Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cagataycivici committed May 5, 2022
2 parents 261b98d + 4597496 commit a01a0be
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions components/lib/calendar/Calendar.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,13 @@ interface CalendarVisibleChangeParams {
callback?(): void;
}

interface CalendarNavigatorTemplateChangeParams {
event: React.SyntheticEvent;
value: string | number | undefined | null;
}
type CalendarNavigatorTemplateChangeCallback = (
event: React.SyntheticEvent,
value: string | number | undefined | null
) => void;

interface CalendarNavigatorTemplateParams {
onChange(e: CalendarNavigatorTemplateChangeParams): void;
onChange: CalendarNavigatorTemplateChangeCallback;
className: string;
value: string | number | undefined | null;
names: any[];
Expand Down

0 comments on commit a01a0be

Please sign in to comment.