UNPKG

@open-formulieren/formio-builder

Version:

An opinionated Formio webform builder for Open Forms

16 lines (15 loc) 779 B
import { RadioComponentSchema } from '@open-formulieren/types'; import { JsonLogicExpression } from '@open-formulieren/types/dist/options'; import { ComponentWithReferenceLists } from '../../components/builder/values/reference-lists/types'; export declare const checkIsManualOptions: (component: RadioComponentSchema) => component is RadioComponentSchema; export declare const checkIsReferenceListsOptions: (component: RadioComponentSchema) => component is RadioComponentSchema & ComponentWithReferenceLists & { openForms: { code: string; service: string; }; }; export declare const checkIsVariableOptions: (component: RadioComponentSchema) => component is RadioComponentSchema & { openForms: { itemsExpression: JsonLogicExpression; }; };