UNPKG

@hashgraph/solo

Version:

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

12 lines (10 loc) 254 B
// SPDX-License-Identifier: Apache-2.0 /** * Indicates a configuration source that can be persisted. */ export interface Persistable { /** * Persists the configuration source to the underlying storage backend. */ persist(): Promise<void>; }