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