@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
11 lines (10 loc) • 358 B
TypeScript
import { type KeyFormatter } from './key-formatter.js';
export declare class ConfigKeyFormatter implements KeyFormatter {
private static _instance;
readonly separator: string;
private constructor();
normalize(key: string): string;
split(key: string): string[];
join(...parts: string[]): string;
static instance(): KeyFormatter;
}