UNPKG
rc-leaflet
Version:
latest (1.4.2)
1.4.2
1.4.1
1.4.0
1.2.2
1.2.1
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
React Map Components of Leaflet
github.com/Coder-JJ/rc-leaflet
Coder-JJ/rc-leaflet
rc-leaflet
/
lib
/
util
/
throttle.d.ts
4 lines
(3 loc)
•
152 B
TypeScript
View Raw
1
2
3
4
export
declare
type
Func
<T =
any
> =
(
...
args
:
any
) =>
T;
declare
const
throttle
:
(
func
:
Func
<
any
>,
wait
:
number
) =>
Func
<
any
>;
export
default
throttle;