@orbit/record-cache
Version:
Orbit base classes used to access and maintain a set of records.
11 lines (10 loc) • 349 B
TypeScript
import { RecordIdentity, RecordOperation } from '@orbit/records';
export interface RecordChange extends RecordIdentity {
keys: string[];
attributes: string[];
relationships: string[];
meta: string[];
links: string[];
remove: boolean;
}
export declare function recordOperationChange(operation: RecordOperation): RecordChange;