Skip to main content
Version: v1

IUploadSummaryResult Interface

Results of submitSummary after uploading the tree to storage.

Signature

export interface IUploadSummaryResult extends Omit<IGenerateSummaryTreeResult, "stage">

Extends: Omit<IGenerateSummaryTreeResult

Properties

PropertyTypeDescription
handlestringThe handle returned by storage pointing to the uploaded summary tree.
stage"upload"
uploadDurationnumberTime it took to upload the summary tree to storage.

Property Details

handle

The handle returned by storage pointing to the uploaded summary tree.

Signature

readonly handle: string;

Type: string

stage

Signature

readonly stage: "upload";

Type: "upload"

uploadDuration

Time it took to upload the summary tree to storage.

Signature

readonly uploadDuration: number;

Type: number