IDetachedBlobStorage TypeAlias
Subset of IDocumentStorageService which only supports createBlob() and readBlob(). This is used to support blobs in detached containers.
Signature
export declare type IDetachedBlobStorage = Pick<IDocumentStorageService, "createBlob" | "readBlob"> & {
size: number;
getBlobIds(): string[];
};