Interface RequestCompletedEventBase

interface RequestCompletedEventBase {
    ok: boolean;
    requestInfo: FetchRequestInfo;
    timestamp: number;
}

Hierarchy (view full)

Properties

ok: boolean

True if the request was successful.

requestInfo: FetchRequestInfo

Information about the request.

timestamp: number

The local timestamp of the request result or error.