@data-client/normalizr
Version:
Normalizes and denormalizes JSON according to schema for Redux and Flux applications
9 lines • 361 B
TypeScript
import type Cache from './cache.js';
import { type GetEntity } from './getEntities.js';
import type { EntityPath } from '../types.js';
declare const getUnvisit: (getEntity: GetEntity, cache: Cache, args: readonly any[]) => (schema: any, input: any) => {
data: any;
paths: EntityPath[];
};
export default getUnvisit;
//# sourceMappingURL=unvisit.d.ts.map