UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

8 lines (7 loc) 277 B
/// <reference types="react" /> import { FormValidateStatus } from "./form.shared"; interface FormItemContextValue { validateStatus?: FormValidateStatus; } declare const FormItemContext: import("react").Context<FormItemContextValue>; export default FormItemContext;