UNPKG
react-hook-merge-state
Version:
latest (1.0.1)
1.0.1
1.0.0
在`useState`的基础上,对同一个状态的默认值、受控值进行对比监听
gitee.com/panda996/react-hook-merge-state
react-hook-merge-state
/
lib
/
shared
/
is-function.d.ts
7 lines
(6 loc)
•
159 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * 验证传参是否Function类型 *
@param
value
*
@returns
*/
export
declare
const
isFunction
:
(
value
:
unknown
) =>
value
is
(...
args
:
any
[]) =>
any
;