@sap-cloud-sdk/odata-v4
Version:
SAP Cloud SDK for JavaScript common functions of OData client generator and OpenAPI clint generator.
13 lines (12 loc) • 825 B
TypeScript
import { CountRequestBuilder as CountRequestBuilderCommon } from '@sap-cloud-sdk/odata-common';
import type { Entity } from '../entity';
import type { DeSerializers, DefaultDeSerializers } from '../de-serializers';
/**
* Create an OData request to count entities based on the configuration of the request.
* A `CountRequestBuilder` allows only for execution of the request.
* If you want to apply query parameters like filter, skip or top do it on the {@link GetAllRequestBuilder} the count is created from.
* @typeParam EntityT - Type of the entity to be requested.
* @typeParam DeSerializersT - Type of the (de-)serializers.
*/
export declare class CountRequestBuilder<EntityT extends Entity, DeSerializersT extends DeSerializers = DefaultDeSerializers> extends CountRequestBuilderCommon<EntityT, DeSerializersT> {
}