interface Options {
    allowedStatusErrors?: number[];
    cookies?: Record<string, string>;
    data?: any;
    headers?: Record<string, string>;
    method?: HttpMethod;
    query?: Record<string, any>;
}

Properties

allowedStatusErrors?: number[]
cookies?: Record<string, string>
data?: any
headers?: Record<string, string>
method?: HttpMethod
query?: Record<string, any>