f8d877860dd66772ec19ef5e253ae4133ece3e1c473ee18aaaff43b1a2dd5bee04a4068e945eaa3d01777fb89859eddfbc31169d9cba818168a3f0fb142c2a 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;