interface HttpRequestOptions {
    data?: unknown;
    headers?: HttpHeaders;
    params?: object;
    responseType?: HttpResponseType;
    withCredentials?: boolean;
}

Hierarchy (view full)

Properties

data?: unknown
headers?: HttpHeaders
params?: object
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.