Interface XHRFetchOptions

interface XHRFetchOptions {
    body?: any;
    headers?: Record<string, string>;
    method?: XHRFetchMethod;
    params?: Record<string, any>;
}

Properties

body?: any
headers?: Record<string, string>
params?: Record<string, any>