UNPKG

@open-formulieren/formio-builder

Version:

An opinionated Formio webform builder for Open Forms

20 lines (19 loc) 774 B
import { SelectComponentSchema } from '@open-formulieren/types'; import { Option } from '@open-formulieren/types/lib/formio/common'; import { JSONObject } from '@open-formulieren/types/lib/types'; export declare const checkIsManualOptions: (component: SelectComponentSchema) => component is SelectComponentSchema & { data: { values: Option[] | undefined; }; }; export declare const checkIsReferenceListsOptions: (component: SelectComponentSchema) => component is SelectComponentSchema & { openForms: { code: string; service: string; }; }; export declare const checkIsVariableOptions: (component: SelectComponentSchema) => component is SelectComponentSchema & { openForms: { itemsExpression: string | JSONObject; }; };