10 lines
308 B
TypeScript
10 lines
308 B
TypeScript
|
/// <reference types="react" />
|
||
|
import type { ValidateStatus } from 'antd/es/form/FormItem';
|
||
|
type UseFormItemStatus = () => {
|
||
|
status?: ValidateStatus;
|
||
|
errors: React.ReactNode[];
|
||
|
warnings: React.ReactNode[];
|
||
|
};
|
||
|
declare const useFormItemStatus: UseFormItemStatus;
|
||
|
export default useFormItemStatus;
|