UNPKG

@orbit/records

Version:

A flexible data access and synchronization layer.

6 lines (5 loc) 352 B
import { RecordOperation, RecordOperationResult } from './record-operation'; import { InitializedRecord } from './record'; import { Transform } from '@orbit/data'; export declare type RecordTransform = Transform<RecordOperation>; export declare type RecordTransformResult<T = InitializedRecord> = RecordOperationResult<T> | RecordOperationResult<T>[];