forgeplus-react/node_modules/antd/lib/form/context.d.ts

12 lines
377 B
TypeScript

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;