constants.d.ts 250 B

1234
  1. import type { InjectionKey } from 'vue';
  2. import type { FormContext, FormItemContext } from './types';
  3. export declare const formContextKey: InjectionKey<FormContext>;
  4. export declare const formItemContextKey: InjectionKey<FormItemContext | undefined>;