Package version:

Represents a single block in a block blob. It describes the block's ID and size.

interface Block {
    name: string;
    size: number;
}

Properties

Properties

name: string

The base64 encoded block ID.

size: number

The block size in bytes.