Skip to content

Commit c4e066a

Browse files
committed
fix it
1 parent 382fa72 commit c4e066a

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)