UNPKG
@prelude/function
Version:
latest (0.4.1)
0.4.1
0.4.0
0.3.0
0.2.0
0.1.0
0.0.3
Function module.
@prelude/function
/
mjs
/
throttle.d.ts
3 lines
(2 loc)
•
94 B
TypeScript
View Raw
1
2
3
declare
const
throttle
:
(
wait
:
number
,
f
: () =>
void
) =>
() =>
void
;
export
default
throttle;