Skip to content

Commit 2249ae0

Browse files
committed
fixed a type error
1 parent ab029e4 commit 2249ae0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/react-resizable-panels/src/utils/debounce.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
export default function debounce<T extends (...args: unknown[]) => void>(
1+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2+
export default function debounce<T extends (...args: any[]) => void>(
23
callback: T,
34
durationMs = 10
45
) {

0 commit comments

Comments
 (0)