Interface RequestCommon<I, O>

interface RequestCommon<I, O> {
    contextValues: ContextValues;
    header: Headers;
    init: RequestInit;
    method: MethodInfo<I, O>;
    service: ServiceType;
    signal: AbortSignal;
    url: string;
}

Type Parameters

Hierarchy (view full)

Properties

contextValues: ContextValues

The context values for the current call.

header: Headers

Headers that will be sent along with the request.

init: RequestInit

Optional parameters to the fetch API.

method: MethodInfo<I, O>

Metadata related to the service method that is being called.

service: ServiceType

Metadata related to the service that is being called.

signal: AbortSignal

The AbortSignal for the current call.

url: string

The URL the request is going to hit.

Generated using TypeDoc