@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
15 lines • 627 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
/**
* Defines the optional operations that can be performed on storage backends.
* Used the `StorageBackend` interface `isSupported` method.
*/
export var StorageOperation;
(function (StorageOperation) {
StorageOperation["List"] = "list";
StorageOperation["ReadObject"] = "readObject";
StorageOperation["WriteObject"] = "writeObject";
StorageOperation["ReadBytes"] = " readBytes";
StorageOperation["WriteBytes"] = "writeBytes";
StorageOperation["Delete"] = "delete";
})(StorageOperation || (StorageOperation = {}));
//# sourceMappingURL=storage-operation.js.map