@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
12 lines (11 loc) • 412 B
TypeScript
/// <reference types="react" />
import { FormControlAlign, FormLabelAlign, FormValidateTrigger } from "./form.shared";
interface FormContextValue {
name?: string;
colon?: boolean;
labelAlign?: FormLabelAlign;
controlAlign?: FormControlAlign;
validateTrigger?: FormValidateTrigger;
}
declare const FormContext: import("react").Context<FormContextValue>;
export default FormContext;