UNPKG

@sap-cloud-sdk/core

Version:
18 lines 965 B
import { Constructable, EntityIdentifiable, Filterable, GetAllRequestBuilder as GetAllRequestBuilderBase } from '../../odata-common'; import { Entity } from '../entity'; export declare class GetAllRequestBuilder<EntityT extends Entity> extends GetAllRequestBuilderBase<EntityT> implements EntityIdentifiable<EntityT> { /** * Creates an instance of GetAllRequestBuilder. * @param entityConstructor - Constructor of the entity to create the request for */ constructor(entityConstructor: Constructable<EntityT>); /** * Add filter statements to the request. * @param expressions - Filter expressions to restrict the response * @returns The request builder itself, to facilitate method chaining */ filter(expressions: Filterable<EntityT>[]): this; filter(...expressions: Filterable<EntityT>[]): this; } export { GetAllRequestBuilder as GetAllRequestBuilderV2 }; //# sourceMappingURL=get-all-request-builder.d.ts.map