UNPKG

@hashgraph/solo

Version:

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

19 lines (11 loc) 263 B
// SPDX-License-Identifier: Apache-2.0 export interface Node { readonly name: string; readonly parent: Node | null; isRoot(): boolean; isInternal(): boolean; isLeaf(): boolean; isArray(): boolean; isArrayIndex(): boolean; path(): string; }