JewelryMall/admin/node_modules/element-plus/es/components/date-picker/src/instance.d.ts
2026-02-14 19:29:15 +08:00

9 lines
268 B
TypeScript

import type DatePicker from './date-picker';
export type DatePickerInstance = InstanceType<typeof DatePicker> & DatePickerExpose;
export type DatePickerExpose = {
focus: () => void;
blur: () => void;
handleOpen: () => void;
handleClose: () => void;
};