UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

9 lines (8 loc) 383 B
import { default as React } from 'react'; import { ChopLogicFormData, ChopLogicFormInputParams } from '../../models'; export interface ChopLogicFormContextProps { onChangeFormInput?: (params: ChopLogicFormInputParams) => void; initialValues?: ChopLogicFormData; resetSignal?: number; } export declare const ChopLogicFormContext: React.Context<ChopLogicFormContextProps>;