1 | import { Constructable, DeleteRequestBuilder as DeleteRequestBuilderBase, FieldType } from '../../odata-common';
|
2 | import { Entity } from '../entity';
|
3 |
|
4 |
|
5 |
|
6 |
|
7 | export declare class DeleteRequestBuilder<EntityT extends Entity> extends DeleteRequestBuilderBase<EntityT> {
|
8 | |
9 |
|
10 |
|
11 |
|
12 |
|
13 | constructor(entityConstructor: Constructable<EntityT>, keysOrEntity: Record<string, FieldType> | Entity);
|
14 | /**
|
15 | * Add an eTag version identifier in the delete request header.
|
16 | * @param eTag - The version identifier of the entity
|
17 | * @returns The builder itself, to facilitate method chaining
|
18 | */
|
19 | setVersionIdentifier(eTag: string): this;
|
20 | }
|
21 | export { DeleteRequestBuilder as DeleteRequestBuilderV2 };
|
22 |
|
\ | No newline at end of file |