Type alias ReqOptions

ReqOptions: {
    body?: ReqBody;
    headers?: string[] | IncomingHttpHeaders;
    method: HttpMethod;
    path: string;
}

Type declaration