Type Alias Selection

type Selection = {
    displayName?: string;
    displayValues?: string[];
    isNumeric: boolean;
    name: string;
    stateName: string;
    values: string[];
}
Index
displayName?: string

Human-readable name of the field the selection applies to.

displayValues?: string[]
isNumeric: boolean

Whether the selected values are numeric.

name: string

Name of the field the selection applies to.

stateName: string

Name of the selection state the values belong to.

values: string[]