Skip to content

LazyListValueOptions

Options for creating a lazy list token.

Initializer

import { LazyListValueOptions } from '@alicloud/ros-cdk-core'
const lazyListValueOptions: LazyListValueOptions = { ... }

Properties

Name Type Description
displayHint string Use the given name as a display hint.
omitEmpty boolean If the produced list is empty, return 'undefined' instead.

displayHintOptional

public readonly displayHint: string;
  • Type: string
  • Default: No hint

Use the given name as a display hint.


omitEmptyOptional

public readonly omitEmpty: boolean;
  • Type: boolean
  • Default: false

If the produced list is empty, return 'undefined' instead.