CML
    Preparing search index...

    Type Alias ResourceTiming

    Resource Timing. This is a subset of the PerformanceResourceTiming interface. https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming

    type ResourceTiming = {
        duration: number;
        encodedBodySize: number;
        responseStart?: number;
        startTime: number;
    }
    Index

    Properties

    duration: number

    The difference (in milliseconds) between the responseEnd and the startTime.

    encodedBodySize: number

    The size (in octets) of the payload body before removing any applied content encodings.

    responseStart?: number

    A DOMHighResTimeStamp immediately after the browser receives the first byte of the response from the server.

    startTime: number

    A DOMHighResTimeStamp for the time a resource fetch started.