Interface IRequestPayloadWithMapper<T>

interface IRequestPayloadWithMapper<T> {
    mapper: (body: Uint8Array) => T;
    requestInit?: Omit<RequestInit, "method" | "signal">;
    requestType: RequestType;
    url: URL;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

mapper: (body: Uint8Array) => T
requestInit?: Omit<RequestInit, "method" | "signal">
requestType: RequestType
url: URL