@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
9 lines (8 loc) • 406 B
TypeScript
import { type KeyFormatter } from './key-formatter.js';
export declare class Prefix {
static readonly DEFAULT_PREFIX: string;
private constructor();
static add(key: string, prefix?: string, formatter?: KeyFormatter): string;
static strip(key: string, prefix?: string, formatter?: KeyFormatter): string;
static matcher(key: string, prefix?: string, formatter?: KeyFormatter): boolean;
}