Skip to content

Commit

Permalink
refactor: use unknown instead of any for isMultiValue util (#9472)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Oct 17, 2024
1 parent 15aa0cd commit 2a44ed7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ export class TuiMobileCalendar implements AfterViewInit {
);
}

private isMultiValue(day: any): day is readonly TuiDay[] | undefined {
private isMultiValue(day: unknown): day is readonly TuiDay[] | undefined {
return !(day instanceof TuiDay) && !(day instanceof TuiDayRange) && this.multi;
}

Expand Down

0 comments on commit 2a44ed7

Please sign in to comment.