UNPKG

@data-client/normalizr

Version:

Normalizes and denormalizes JSON according to schema for Redux and Flux applications

12 lines 554 B
import type Cache from './cache.js'; import type { EntityInterface, EntityPath } from '../interface.js'; import type { INVALID } from './symbol.js'; export default class LocalCache implements Cache { private localCache; getEntity(pk: string, schema: EntityInterface, entity: any, computeValue: (localCacheKey: Map<string, any>) => void): object | undefined | typeof INVALID; getResults(input: any, cachable: boolean, computeValue: () => any): { data: any; paths: EntityPath[]; }; } //# sourceMappingURL=localCache.d.ts.map