UNPKG
web-see-monitor
Version:
latest (1.0.0)
1.0.0
前端监控 SDK,包含性能监控、错误监控和用户行为监控
web-see-monitor
/
dist
/
types
/
utils
/
debounce.d.ts
2 lines
(1 loc)
•
125 B
TypeScript
View Raw
1
2
export
declare
function
debounce<T
extends
(...
args
:
any
[]) =>
any
>(
fn
: T,
delay
:
number
):
(
...
args
:
Parameters
<T>
) =>
void
;