IUploadSummaryResult Interface
Results of submitSummary after uploading the tree to storage.
Signature
export interface IUploadSummaryResult extends Omit<IGenerateSummaryTreeResult, "stage">
Extends: Omit<IGenerateSummaryTreeResult
Properties
| Property | Type | Description |
|---|---|---|
| handle | string | The handle returned by storage pointing to the uploaded summary tree. |
| stage | "upload" | |
| uploadDuration | number | Time 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