import GreyReactBox from 'grey-react-box'; import InvoiceControllerState from '../InvoiceControllerState'; import { WrappedFormUtils } from 'kts-components-antd-x3/lib/form/Form'; export default class InvoiceControllerForm extends GreyReactBox { /** form 字典 */ readonly formList: Map>; /** 注册 form */ useForm(key: string, value: WrappedFormUtils): void; /** 校验所有表单 */ validateFields(): Promise<{ errors: Map; values: Map; }>; }