1 | import { Entity, Constructable } from '../entity';
|
2 | import { Filterable } from '../filter';
|
3 | import { Orderable } from '../order';
|
4 | import { Selectable } from '../selectable';
|
5 | import { Expandable } from '../expandable';
|
6 | import { ODataUri } from '../uri-conversion';
|
7 | import { ODataRequestConfig } from './odata-request-config';
|
8 | import { WithGetAllRestrictions } from './odata-request-traits';
|
9 |
|
10 |
|
11 |
|
12 |
|
13 | export declare class ODataGetAllRequestConfig<EntityT extends Entity> extends ODataRequestConfig implements WithGetAllRestrictions<EntityT> {
|
14 | readonly entityConstructor: Constructable<EntityT>;
|
15 | private oDataUri;
|
16 | top: number;
|
17 | skip: number;
|
18 | filter: Filterable<EntityT>;
|
19 | orderBy: Orderable<EntityT>[];
|
20 | selects: Selectable<EntityT>[];
|
21 | expands: Expandable<EntityT>[];
|
22 | |
23 |
|
24 |
|
25 |
|
26 | constructor(entityConstructor: Constructable<EntityT>, oDataUri: ODataUri);
|
27 | resourcePath(): string;
|
28 | queryParameters(): Record<string, any>;
|
29 | }
|
30 | //# sourceMappingURL=odata-get-all-request-config.d.ts.map |
\ | No newline at end of file |