UNPKG

@croct/plug-react

Version:

React components and hooks to plug your React applications into Croct.

10 lines (8 loc) 217 B
type EntryLoader<R> = (...args: any) => Promise<R>; type EntryOptions<R> = { cacheKey: string; loader: EntryLoader<R>; fallback?: R; expiration?: number; }; export type { EntryLoader, EntryOptions };