@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
8 lines (7 loc) • 389 B
TypeScript
import { type ObjectStorageBackend } from '../api/object-storage-backend.js';
import { FileStorageBackend } from './file-storage-backend.js';
export declare class YamlFileStorageBackend extends FileStorageBackend implements ObjectStorageBackend {
constructor(basePath: string);
readObject(key: string): Promise<object>;
writeObject(key: string, data: object): Promise<void>;
}