@orbit/record-cache
Version:
Orbit base classes used to access and maintain a set of records.
9 lines (8 loc) • 440 B
TypeScript
import { RequestOptions } from '@orbit/data';
import { RecordOperation, RecordOperationResult } from '@orbit/records';
import { Dict } from '@orbit/utils';
import { SyncRecordAccessor } from '../record-accessor';
export interface SyncTransformOperator {
(cache: SyncRecordAccessor, operation: RecordOperation, options?: RequestOptions): RecordOperationResult;
}
export declare const SyncTransformOperators: Dict<SyncTransformOperator>;