interface HttpResponseTiming {
    doneTimestamp?: number;
    headersReceivedTimestamp?: number;
    openedTimestamp?: number;
    progressTimestamp?: number;
    sendTimestamp?: number;
}

Properties

doneTimestamp?: number

The timestamp at which the request was finished.

headersReceivedTimestamp?: number

The timestamp at which the headers where received.

openedTimestamp?: number

The timestamp at which the request was opened.

progressTimestamp?: number

The timestamp of the current progress event.

sendTimestamp?: number

The time at which the request was initially sent.