@douyinfe/semi-ui
Version:
A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.
10 lines (9 loc) • 511 B
TypeScript
import React from 'react';
import { BaseFormApi, FormUpdaterContextType, FormState } from '@douyinfe/semi-foundation/lib/cjs/form/interface';
declare const FormStateContext: React.Context<FormState<any>>;
declare const FormApiContext: React.Context<BaseFormApi<any>>;
declare const FormUpdaterContext: React.Context<FormUpdaterContextType>;
declare const ArrayFieldContext: React.Context<{
shouldUseInitValue: boolean;
}>;
export { FormStateContext, FormApiContext, FormUpdaterContext, ArrayFieldContext };