@ablestack/rdo
Version:
A library to facilitate building and running graphs of Reactive Domain Objects - connecting JSON data sources to reactive client applications
14 lines (13 loc) • 389 B
TypeScript
export declare class MutableNodeCache {
private _sourceMap;
set({ sourceNodeInstancePath, dataKey, data }: {
sourceNodeInstancePath: string;
dataKey?: string;
data: any;
}): void;
get<T>({ sourceNodeInstancePath, dataKey }: {
sourceNodeInstancePath: string;
dataKey?: string;
}): T | undefined;
clear(): void;
}