date-picker.d.ts 312 B

12345678
  1. import type { InjectionKey, SetupContext } from 'vue';
  2. import type { UseNamespaceReturn } from 'element-plus/es/hooks';
  3. interface DatePickerContext {
  4. slots: SetupContext['slots'];
  5. pickerNs: UseNamespaceReturn;
  6. }
  7. export declare const ROOT_PICKER_INJECTION_KEY: InjectionKey<DatePickerContext>;
  8. export {};