UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

11 lines (10 loc) 233 B
export interface Node { readonly name: string; readonly parent: Node | null; isRoot(): boolean; isInternal(): boolean; isLeaf(): boolean; isArray(): boolean; isArrayIndex(): boolean; path(): string; }