You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
312 B

6 months ago
  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 {};