UNPKG

@hashgraph/solo

Version:

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

12 lines (7 loc) 209 B
// SPDX-License-Identifier: Apache-2.0 export interface KeyFormatter { readonly separator: string; normalize(key: string): string; split(key: string): string[]; join(...parts: string[]): string; }