UNPKG

378 BTypeScriptView Raw
1import * as React from 'react';
2import { ColProps } from 'antd/lib/grid/col';
3import { FormLabelAlign } from './FormItem';
4export interface FormContextProps {
5 vertical: boolean;
6 colon?: boolean;
7 labelAlign?: FormLabelAlign;
8 labelCol?: ColProps;
9 wrapperCol?: ColProps;
10}
11declare const FormContext: React.Context<FormContextProps>;
12export default FormContext;