@storybooker/gcp
Version:
StoryBooker Adapter for interacting with GCP services.
19 lines (18 loc) • 713 B
TypeScript
import { StorageService } from "@storybooker/core/types";
import { Storage } from "@google-cloud/storage";
//#region src/storage.d.ts
declare class GcpGcsStorageService implements StorageService {
#private;
constructor(client: Storage);
createContainer: StorageService["createContainer"];
deleteContainer: StorageService["deleteContainer"];
hasContainer: StorageService["hasContainer"];
listContainers: StorageService["listContainers"];
deleteFiles: StorageService["deleteFiles"];
uploadFiles: StorageService["uploadFiles"];
hasFile: StorageService["hasFile"];
downloadFile: StorageService["downloadFile"];
}
//#endregion
export { GcpGcsStorageService };
//# sourceMappingURL=storage.d.ts.map