Skip to content

Commit

Permalink
chore: Update types
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasenkoo committed Dec 28, 2024
1 parent 10eb8e3 commit dbbc15d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import type {
ComputedOptions,
ComputedRef,
DefineComponent,
MaybeRefOrGetter,
MethodOptions,
Ref,
} from 'vue';
Expand Down Expand Up @@ -172,6 +173,7 @@ export interface VueDatePickerProps {
hideInputIcon?: boolean;
state?: boolean;
clearable?: boolean;
alwaysClearable?: boolean;
autoApply?: boolean;
filters?: {
months?: number[];
Expand Down Expand Up @@ -233,7 +235,7 @@ export interface VueDatePickerProps {
multiDates?: boolean | { limit?: number | string; dragSelect?: boolean };
presetDates?: {
label: string;
value: Date[] | string[] | string | Date;
value: MaybeRefOrGetter<Date[] | string[] | string | Date>;
style?: Record<string, string>;
slot?: string;
noTz?: boolean;
Expand Down Expand Up @@ -408,6 +410,7 @@ export interface Slots {
instance?: number;
selectMonth?: (month: number, instance: number) => void;
selectYear?: (year: number, instance: number) => void;
isDisabled?: (next: boolean) => boolean;
}): any;
'time-picker'(props: {
time: InternalTime;
Expand Down

0 comments on commit dbbc15d

Please sign in to comment.