UNPKG

650 BTypeScriptView Raw
1import { MethodRequestBuilder } from '../request-builder-base';
2/**
3 * Representation of a batch change set, which holds a collection of write operations.
4 */
5export declare class BatchChangeSet<RequestT extends MethodRequestBuilder = any> {
6 readonly requests: RequestT[];
7 readonly boundary: string;
8 /**
9 * Create an instance of BatchChangeSet.
10 * @param requests - Requests to combine to one change set.
11 * @param boundary - Request boundary for separation of sub requests. Defaults to an auto generated value.
12 */
13 constructor(requests: RequestT[], boundary?: string);
14}
15//# sourceMappingURL=batch-change-set.d.ts.map
\No newline at end of file