UNPKG

@data-client/normalizr

Version:

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

11 lines (10 loc) 471 B
import { EntityInterface, EntityPath } from '../interface.js'; import { INVALID } from './symbol.js'; export default interface Cache { 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=cache.d.ts.map