UNPKG

@hashgraph/solo

Version:

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

10 lines (9 loc) 223 B
/** * Indicates a configuration source that can be refreshed. */ export interface Refreshable { /** * Reloads the configuration source from the underlying storage backend. */ refresh(): Promise<void>; }