| 3 | import FormContext from './FormContext'; |
| 4 | |
| 5 | export interface FormProps extends React.HTMLAttributes<HTMLFormElement> { |
| 6 | className?: string; |
| 7 | style?: CSSProperties; |
| 8 | onFinish?: (values: Record<string, any>) => void; |
| 9 | onFinishFailed?: (errors: Record<string, any>) => void; |
| 10 | initialValues?: Record<string, any>; |
| 11 | children?: ReactNode |
| 12 | } |
| 13 | |
| 14 | export interface FormRefApi { |
| 15 | getFieldsValue: () => Record<string, any>, |
nothing calls this directly
no outgoing calls
no test coverage detected