UNPKG
react-photo-view-fix
Version:
latest (0.5.2)
0.5.2
一款精致的 React 的图片预览组件
github.com/MinJieLiu/react-photo-view
MinJieLiu/react-photo-view
react-photo-view-fix
/
dist
/
utils
/
throttle.d.ts
8 lines
(7 loc)
•
186 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/// <reference types="lodash" />
/** * throttle *
@param
func
*
@param
wait
*/
export
default
function
throttle
(
func
:
any
,
wait
:
number
):
import
(
"lodash"
).
DebouncedFunc
<
any
>;