odata-batch
Version:
a simple lib for send and recieve calls odata batch
7 lines (6 loc) • 394 B
TypeScript
import { AxiosRequestConfig } from 'axios';
import { ODataBatchRepository } from "./BatchRepository";
import { BatchResponseConstructor } from './response';
export declare class ODataBatchAxiosRepository implements ODataBatchRepository {
send(url: string, batchRequest: string, config: AxiosRequestConfig | undefined, accept: string, BatchParser: BatchResponseConstructor): Promise<any>;
}