UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

8 lines (7 loc) 360 B
import { ChopLogicFormData, ChopLogicSelectValue } from '../../../models'; export declare function getSelectInitialValue({ name, options, initialValues, defaultValue, }: { name: string; options: ChopLogicSelectValue[]; initialValues?: ChopLogicFormData; defaultValue?: string | number | readonly string[]; }): ChopLogicSelectValue | undefined;