date-table.vue.d.ts 1022 B

1234567891011121314151617181920212223242526272829303132
  1. import { CalendarDateCellType } from "./date-table.js";
  2. import * as vue from "vue";
  3. import * as dayjs$1 from "dayjs";
  4. //#region ../../packages/components/calendar/src/date-table.vue.d.ts
  5. declare var __VLS_1: {
  6. data: {
  7. isSelected: boolean;
  8. type: string;
  9. day: string;
  10. date: Date;
  11. };
  12. };
  13. type __VLS_Slots = {} & {
  14. 'date-cell'?: (props: typeof __VLS_1) => any;
  15. };
  16. declare const __VLS_base: vue.DefineComponent<{}, {
  17. /** @description toggle date panel */getFormattedDate: (day: number, type: CalendarDateCellType) => dayjs$1.Dayjs;
  18. }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
  19. pick: (value: dayjs$1.Dayjs) => void;
  20. }, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{}>> & {
  21. onPick?: ((value: dayjs$1.Dayjs) => any) | undefined;
  22. }, {}, {}>;
  23. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  24. declare const _default: typeof __VLS_export;
  25. type __VLS_WithSlots<T, S> = T & {
  26. new (): {
  27. $slots: S;
  28. };
  29. };
  30. //#endregion
  31. export { _default };