UNPKG
meng-utils
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
一个js工具函数库,将平时常用的方法封装成通用库
github.com/qianxunyimeng/meng-utils
qianxunyimeng/meng-utils
meng-utils
/
lib
/
types
/
src
/
fun
/
throttle.d.ts
12 lines
(11 loc)
•
208 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** * 函数节流 * *
@param
cb
- 目标函数 *
@param
wait
- 等待时常 *
@returns
*/
export
declare
function
throttle
(
cb
:
Function
,
wait
:
number
,
):
(
this
:
any
,
e
:
Event
) =>
void
;