UNPKG

@orbit/record-cache

Version:

Orbit base classes used to access and maintain a set of records.

9 lines (8 loc) 444 B
import { RequestOptions } from '@orbit/data'; import { RecordOperation } from '@orbit/records'; import { Dict } from '@orbit/utils'; import { SyncRecordAccessor } from '../record-accessor'; export interface SyncInverseTransformOperator { (cache: SyncRecordAccessor, operation: RecordOperation, options?: RequestOptions): RecordOperation | undefined; } export declare const SyncInverseTransformOperators: Dict<SyncInverseTransformOperator>;