UNPKG

@ablestack/rdo

Version:

A library to facilitate building and running graphs of Reactive Domain Objects - connecting JSON data sources to reactive client applications

12 lines (11 loc) 331 B
import { NodePatchOperationType } from '.'; export interface NodeChange { changeType: NodePatchOperationType; sourceNodeTypePath: string; sourceNodeInstancePath: string; index?: number; sourceKey: any; rdoKey: any; previousSourceValue: any | undefined; newSourceValue: any | undefined; }