UNPKG
@gyenno/nutui-taro
Version:
latest (4.0.7)
4.0.7
京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)
github.com/jdf2e/nutui
jdf2e/nutui
@gyenno/nutui-taro
/
dist
/
types
/
utils
/
throttle.d.ts
3 lines
(2 loc)
•
150 B
TypeScript
View Raw
1
2
3
export
declare
function
debounce
(
fn
:
Function
,
delay
:
number
):
() =>
void
;
export
declare
function
throttle
(
fn
:
Function
,
delay
:
number
):
() =>
void
;