UNPKG

@td-design/rn-hooks

Version:

从ahooks里面抽取的一些在rn项目里可以使用的hooks。提高开发效率

5 lines (4 loc) 216 B
import type { useEffect, useLayoutEffect } from 'react'; type effectHookType = typeof useEffect | typeof useLayoutEffect; export declare const createUpdateEffect: (hook: effectHookType) => effectHookType; export {};