UNPKG
formular
Version:
latest (3.1.6)
next (4.0.0-beta.3)
4.0.0-beta.3
4.0.0-beta.2
4.0.0-beta.1
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
2.6.1
2.6.0
2.5.6
2.5.5
2.5.4
2.5.3
2.5.2
2.5.1
2.5.0
2.4.3
2.4.2
2.4.1
2.4.0
2.3.0
2.2.11
2.2.10
2.2.9
2.2.8
2.2.6
2.2.5
2.2.4
2.2.3
2.2.1
2.2.0
2.1.10
2.1.9
2.1.8
2.1.7
2.1.6
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.0
1.0.2
1.0.1
1.0.0
0.0.0
Build forms in React. Easy-Peasy!
github.com/pavelivanov/formular
pavelivanov/formular
formular
/
dist
/
util
/
debounce.d.ts
4 lines
•
271 B
TypeScript
View Raw
1
2
3
4
declare
type
Procedure
=
(
...
args
:
any
[]
) =>
void
;
declare
function
debounce<F
extends
Procedure
>(
func
: F,
wait
:
number
,
immediate
?:
boolean
):
(
this
:
ThisParameterType
<F>, ...
args
:
Parameters
<F>
) =>
void
;
export
default
debounce;
//# sourceMappingURL=debounce.d.ts.map