UNPKG

ts-neo4j-parser

Version:

Typescript Neo4j parser to JSON

21 lines (20 loc) 386 B
/** * Node reprensentation * * @export * @class Node * @template T node label * @template V node data */ export declare class Node<T, V> { id: T; data: V; readonly label: string; /** * Creates an instance of Node. * @param {T} id * @param {V} data * @memberof Node */ constructor(id: T, label: string, data: V); }