instance.d.ts 296 B

12345
  1. import type DateTable from './date-table.vue';
  2. import type Calendar from './calendar.vue';
  3. export type DateTableInstance = InstanceType<typeof DateTable> & unknown;
  4. export type CalendarDateTableInstance = DateTableInstance;
  5. export type CalendarInstance = InstanceType<typeof Calendar> & unknown;