Interface BatchRequest<R>

batch request

interface BatchRequest<R> {
    init?: RequestInit & {
        body?: any;
    };
    options?: BatchRequestOptions<any>;
    url: string;
}

Type Parameters

  • R = any

Hierarchy (view full)

Properties

Properties

init?: RequestInit & {
    body?: any;
}

Type declaration

  • Optional body?: any
options?: BatchRequestOptions<any>

original options

url: string

for odata batch request, please give a relative path from odata endpoint