UNPKG

@tweedegolf/sab-adapter-azure-blob

Version:

Provides an abstraction layer for interacting with Microsoft Azure Blob Storage cloud service.

9 lines (8 loc) 239 B
import { AdapterConfig } from "./general"; export interface AdapterConfigAzureBlob extends AdapterConfig { accountName?: string; connectionString?: string; accountKey?: string; sasToken?: string; blobDomain?: string; }