UNPKG

@hashgraph/solo

Version:

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

10 lines (9 loc) 222 B
/** * Indicates a configuration source that can be persisted. */ export interface Persistable { /** * Persists the configuration source to the underlying storage backend. */ persist(): Promise<void>; }