UNPKG
linkup-bot-lib
Version:
latest (1.2.8)
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.0
linkup-bot-lib
/
types
/
debounceify.d.ts
5 lines
(3 loc)
•
135 B
TypeScript
View Raw
1
2
3
4
5
declare
module
'debounceify'
{
export
default
function
debounce
(
worker
: () =>
Promise
<
any
>,
context
?:
any
):
() =>
Promise
<
any
>; }