Skip to content

Commit

Permalink
fixed a type error
Browse files Browse the repository at this point in the history
  • Loading branch information
ahkhanjani committed Nov 17, 2024
1 parent ab029e4 commit 2249ae0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/react-resizable-panels/src/utils/debounce.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export default function debounce<T extends (...args: unknown[]) => void>(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export default function debounce<T extends (...args: any[]) => void>(
callback: T,
durationMs = 10
) {
Expand Down

0 comments on commit 2249ae0

Please sign in to comment.