Interface RequestOpts

interface RequestOpts {
    body?: any;
    headers: HTTPHeaders;
    method: HTTPMethod;
    path: string;
    query?: HTTPQuery;
}

Properties

body?: any
headers: HTTPHeaders
method: HTTPMethod
path: string
query?: HTTPQuery