Type alias RequestOptions

RequestOptions: {
    body?: any;
    headers: RequestHeaders;
    method: RequestMethod;
    request?: RequestRequestOptions;
    url: Url;
}

Generic request options as they are returned by the endpoint() method

Type declaration