interface HttpRequest {
    data?: unknown;
    headers?: HttpHeaders;
    method: HttpMethod;
    params?: object;
    path: string;
    responseType?: HttpResponseType;
    withCredentials?: boolean;
}

Hierarchy (view full)

Properties

data?: unknown
headers?: HttpHeaders
method: HttpMethod
params?: object
path: string
responseType?: HttpResponseType
withCredentials?: boolean

Set this to 'true' if you want to send credentials (access token) with the request to other domains than the specified base url.