One of the options provided to a SelectInput
, containing a value and optionally a human-readable label to display in the selection interface.
Signature:
export interface SelectOptions<T = unknown>
Properties
Property | Type | Description |
---|---|---|
label | string | |
value | T |
params.SelectOptions.label
Signature:
label?: string;
params.SelectOptions.value
Signature:
value: T;