1 | import { Constructable, Entity } from '../entity';
|
2 | import { FieldType } from '../selectable';
|
3 | import { ODataUri } from '../uri-conversion';
|
4 | import { ODataRequestConfig } from './odata-request-config';
|
5 | import { WithKeys, WithETag } from './odata-request-traits';
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | export declare class ODataDeleteRequestConfig<EntityT extends Entity> extends ODataRequestConfig implements WithKeys, WithETag {
|
11 | readonly entityConstructor: Constructable<EntityT>;
|
12 | private oDataUri;
|
13 | keys: Record<string, FieldType>;
|
14 | eTag: string;
|
15 | versionIdentifierIgnored: boolean;
|
16 | |
17 |
|
18 |
|
19 |
|
20 | constructor(entityConstructor: Constructable<EntityT>, oDataUri: ODataUri);
|
21 | resourcePath(): string;
|
22 | queryParameters(): Record<string, any>;
|
23 | }
|
24 | //# sourceMappingURL=odata-delete-request-config.d.ts.map |
\ | No newline at end of file |