@ablestack/rdo
Version:
A library to facilitate building and running graphs of Reactive Domain Objects - connecting JSON data sources to reactive client applications
13 lines (12 loc) • 540 B
TypeScript
import { InternalNodeKind } from '..';
export declare class NodeTracker {
static readonly nodePathSeperator = "/";
private _sourceNodeInstancePathStack;
private _sourceNodeTypePathStack;
pushSourceNodeInstancePathOntoStack(key: string | number, sourceNodeKind: InternalNodeKind): void;
popSourceNodeInstancePathFromStack(sourceNodeKind: InternalNodeKind): void;
private _sourceNodeInstancePath;
getSourceNodeInstancePath(): string;
private _sourceNodeTypePath;
getSourceNodePath(): string;
}