Calendar model value type fixed

pull/3472/head
Bahadır Sofuoğlu 2023-01-02 12:45:28 +03:00
parent c5c1e69a65
commit 81bff7818d
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import { HTMLAttributes, InputHTMLAttributes, VNode } from 'vue';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
type CalendarValueType = Date | Date[] | undefined;
type CalendarValueType = string | Date | string[] | Date[] | undefined;
type CalendarSlotDateType = { day: number; month: number; year: number; today: boolean; selectable: boolean };