interface EsriRequestCompatOptions {
    body?: null | BodyInit;
    headers?: Record<string, string>;
    method?: string;
    query?: Record<string, string | number | boolean>;
    responseType?: EsriRequestResponseTypeCompat;
    signal?: AbortSignal;
}

Properties

body?: null | BodyInit
headers?: Record<string, string>
method?: string
query?: Record<string, string | number | boolean>
signal?: AbortSignal