UNPKG

@td-design/rn-hooks

Version:

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

5 lines (4 loc) 246 B
type CachedKey = string | number; declare const getCachePromise: (cacheKey: CachedKey) => Promise<any> | undefined; declare const setCachePromise: (cacheKey: CachedKey, promise: Promise<any>) => void; export { getCachePromise, setCachePromise };