Interface RequestSuccessEvent

interface RequestSuccessEvent {
    attemptInfo: RequestAttemptInfo;
    ok: true;
    requestInfo: FetchRequestInfo;
    responseInfo: ResponseInfo;
    timestamp: number;
}

Hierarchy (view full)

Properties

attemptInfo: RequestAttemptInfo

Information about the current attempt.

ok: true

The response was successful.

requestInfo: FetchRequestInfo

Information about the request.

responseInfo: ResponseInfo

The serializable and loggable response.

timestamp: number

The local timestamp of the request result or error.