UNPKG

@orbit/record-cache

Version:

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

11 lines (10 loc) 446 B
import { RecordOperation } from '@orbit/records'; import { SyncOperationProcessor } from '../sync-operation-processor'; /** * An operation processor that ensures that a cache's data is consistent with * its associated schema. This includes maintenance of inverse and dependent * relationships. */ export declare class SyncSchemaConsistencyProcessor extends SyncOperationProcessor { after(operation: RecordOperation): RecordOperation[]; }