Skip to main content

expression-builder.types.selectinput

Home > @genesislcap/expression-builder > Types > SelectInput

Types.SelectInput type

This API is provided as a beta preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.

Configuration for an enum-type input, which as a string or number value, and uses a select input. *

Signature:

export type SelectInput = {
input: 'select';
type: 'enum';
values: Record<string, string | number>;
};