export declare const BATCH_SIZE_LIMIT = 20; export interface IGraphBatchRequest { id: string; dependsOn?: string[]; method: HttpMethod; url: string; body?: object; headers?: { [key: string]: string; }; } export interface IGraphBatchBody { requests: IGraphBatchRequest[]; } export declare enum HttpMethod { Get = "GET", Post = "POST" }