UNPKG

@connected/react

Version:

The hassle free way to call your server-side code

11 lines 369 B
import React from 'react'; import Lru from './lru.js'; import type { CacheItem, Newable } from './types.js'; declare const ConnectedContext: React.Context<{ cache: Lru<CacheItem>; dataTtl: number; errorTtl: number; factory: <T>(klass: Newable<T>, ...args: any[]) => T; }>; export default ConnectedContext; //# sourceMappingURL=connected-context.d.ts.map