interface TransportResponse {
    body: unknown;
    headers: Record<string, undefined | string | string[]>;
    status: number;
}

Properties

Properties

body: unknown

Parsed JSON if content-type is JSON, otherwise raw string.

headers: Record<string, undefined | string | string[]>
status: number