UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

12 lines (11 loc) 377 B
import { ColProps } from '../grid/col'; import { FormLabelAlign } from './FormItem'; export interface FormContextProps { vertical: boolean; colon?: boolean; labelAlign?: FormLabelAlign; labelCol?: ColProps; wrapperCol?: ColProps; } declare const FormContext: import("@ant-design/create-react-context").Context<FormContextProps>; export default FormContext;