@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
13 lines (12 loc) • 354 B
TypeScript
/**
* Defines the optional operations that can be performed on storage backends.
* Used the `StorageBackend` interface `isSupported` method.
*/
export declare enum StorageOperation {
List = "list",
ReadObject = "readObject",
WriteObject = "writeObject",
ReadBytes = " readBytes",
WriteBytes = "writeBytes",
Delete = "delete"
}