Package version:

Interface BlobItem

An Azure Storage blob

interface BlobItem {
    deleted: boolean;
    hasVersionsOnly?: boolean;
    isCurrentVersion?: boolean;
    metadata?: {
        [propertyName: string]: string;
    };
    name: string;
    objectReplicationSourceProperties?: {};
    properties: BlobProperties;
    snapshot: string;
    tags?: any;
    versionId?: string;
}

Properties

deleted: boolean
hasVersionsOnly?: boolean
isCurrentVersion?: boolean
metadata?: {
    [propertyName: string]: string;
}
name: string
objectReplicationSourceProperties?: {}
properties: BlobProperties
snapshot: string
tags?: any
versionId?: string