Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RequestOptions

import type { RequestOptions } from "https://raw.githubusercontent.com/cmd-johnson/deno-oauth2-client/master/mod.ts";
interface RequestOptions {
body?: Record<string, string>;
headers?: Record<string, string>;
method?: HttpVerb;
urlParams?: Record<string, string>;
}

§Properties

§
body?: Record<string, string>
[src]

Body parameters to set when performing outgoing HTTP requests.

§
headers?: Record<string, string>
[src]

Headers to set when performing outgoing HTTP requests.

§
method?: HttpVerb
[src]

HTTP Method to use when performing outgoing HTTP requests.

§
urlParams?: Record<string, string>
[src]

URL parameters to set when performing outgoing HTTP requests.