Skip to content

Commit

Permalink
fix: Wrong type for year slot (fixes #867)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasenkoo committed May 21, 2024
1 parent 85a1002 commit 94dbdde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ interface Slots {
hours(props: { text: string; value: number }): any;
minutes(props: { text: string; value: number }): any;
month(props: { text: string; value: number }): any;
year(props: { year: number }): any;
year(props: { text: string; value: number }): any;
'action-buttons'(props: { value: InternalModelValue }): any;
'action-preview'(props: { value: InternalModelValue }): any;
'calendar-header'(props: { day: string; index: number }): any;
Expand Down

0 comments on commit 94dbdde

Please sign in to comment.