UNPKG

@storybooker/azure

Version:

StoryBooker Adapter for interacting with Azure services.

19 lines (18 loc) 747 B
import { BlobServiceClient } from "@azure/storage-blob"; import { StorageService } from "@storybooker/core/types"; //#region src/blob-storage.d.ts declare class AzureBlobStorageService implements StorageService { #private; constructor(client: BlobServiceClient); 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 { AzureBlobStorageService }; //# sourceMappingURL=blob-storage.d.ts.map