Interface RequestDetails

interface RequestDetails {
    body?: string;
    headers?: Record<string, string>;
    method?: string;
    url: string;
}

Properties

body?: string
headers?: Record<string, string>
method?: string
url: string

Generated using TypeDoc