Skip to content

Commit

Permalink
Update src/utils/debounce.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Souche <[email protected]>
  • Loading branch information
bjlaa and paulsouche authored Sep 3, 2024
1 parent 5503369 commit 06ddc68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/debounce.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export function debounce<T extends (...args: any[]) => void>(
export function debounce<T extends (...args: unknown[]) => void>(
func: T,
delay: number
): (...args: Parameters<T>) => void {
Expand Down

0 comments on commit 06ddc68

Please sign in to comment.