params.SelectOptions interface

One of the options provided to a SelectInput, containing a value and optionally a human-readable label to display in the selection interface.

Signature:

exportinterfaceSelectOptions<T=unknown>

Properties

PropertyTypeDescription
labelstring
valueT

params.SelectOptions.label

Signature:

label?:string;

params.SelectOptions.value

Signature:

value:T;