Event emitted when an upload is in progress, such as when the holder sends a response to the reader.

interface UploadProgressState {
    current: number;
    kind: "uploadProgress";
    total: number;
}

Properties

Properties

current: number

Number of chunks sent so far.

kind: "uploadProgress"
total: number

Total number of chunks to be sent.

Generated using TypeDoc