@azure/storage-blob
Version:
Microsoft Azure Storage SDK for JavaScript - Blob
24 lines • 622 B
TypeScript
/**
* Range for Blob Service Operations.
* @see https://learn.microsoft.com/rest/api/storageservices/specifying-the-range-header-for-blob-service-operations
*/
export interface Range {
/**
* StartByte, larger than or equal 0.
*/
offset: number;
/**
* Optional. Count of bytes, larger than 0.
* If not provided, will return bytes from offset to the end.
*/
count?: number;
}
/**
* Generate a range string. For example:
*
* "bytes=255-" or "bytes=0-511"
*
* @param iRange -
*/
export declare function rangeToString(iRange: Range): string;
//# sourceMappingURL=Range.d.ts.map