Skip to content

Commit 8ca7294

Browse files
committed
fix it
1 parent 4133ee8 commit 8ca7294

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/replay-internal/src/util/throttle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const SKIPPED = '__SKIPPED';
1010
* or else the return value of the original function.
1111
*/
1212
// eslint-disable-next-line @typescript-eslint/no-explicit-any
13-
export function throttle<T extends (...rest: unknown[]) => any>(
13+
export function throttle<T extends (...rest: any[]) => any>(
1414
fn: T,
1515
maxCount: number,
1616
durationSeconds: number,

0 commit comments

Comments
 (0)