chop-logic-components
Version:
React UI components library for Chop Logic project
8 lines (7 loc) • 360 B
TypeScript
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;