Skip to content

Commit

Permalink
Merge pull request #17 from Deep-Consulting-Solutions/type-fix
Browse files Browse the repository at this point in the history
fix: types for getMoreEvents
  • Loading branch information
Bastieno authored Jan 20, 2025
2 parents 5eaa1ed + d1a2288 commit 6c38c81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ declare module '@deep-consulting-solutions/react-big-calendar' {
elementProps?: React.HTMLAttributes<HTMLElement> | undefined
style?: React.CSSProperties | undefined
onShowMore?: ((events: TEvent[], date: Date) => void) | undefined
getMoreEvents?: ((date: Date) => TEvent[]) | undefined
getMoreEvents?: ((date: Date) => Promise<TEvent[]>) | undefined
grouping?: Grouping
}

Expand Down

0 comments on commit 6c38c81

Please sign in to comment.