import { Entity, Constructable } from '../entity'; import { Filterable } from '../filter'; import { Orderable } from '../order'; import { Selectable } from '../selectable'; import { Expandable } from '../expandable'; import { ODataUri } from '../uri-conversion'; import { ODataRequestConfig } from './odata-request-config'; import { WithGetAllRestrictions } from './odata-request-traits'; /** * OData getAll request configuration for an entity type. * @typeparam EntityT - Type of the entity to setup a request for */ export declare class ODataGetAllRequestConfig extends ODataRequestConfig implements WithGetAllRestrictions { readonly entityConstructor: Constructable; private oDataUri; top: number; skip: number; filter: Filterable; orderBy: Orderable[]; selects: Selectable[]; expands: Expandable[]; /** * Creates an instance of ODataGetAllRequestConfig. * @param entityConstructor - Constructor type of the entity to create a configuration for */ constructor(entityConstructor: Constructable, oDataUri: ODataUri); resourcePath(): string; queryParameters(): Record; } //# sourceMappingURL=odata-get-all-request-config.d.ts.map