1 | import { ODataGetAllRequestConfig as ODataGetAllRequestConfigBase, Entity as EntityBase, Constructable } from '../../odata-common';
|
2 | /**
|
3 | * @deprecated Since v1.21.0. Use superclass instead.
|
4 | * OData delete request configuration for an entity type.
|
5 | * @typeparam EntityT - Type of the entity to setup a request for
|
6 | */
|
7 | declare class ODataGetAllRequestConfig<EntityT extends EntityBase> extends ODataGetAllRequestConfigBase<EntityT> {
|
8 | /**
|
9 | * Creates an instance of ODataGetAllRequestConfig.
|
10 | * @param _entityConstructor - Constructor type of the entity to create a configuration for
|
11 | */
|
12 | constructor(_entityConstructor: Constructable<EntityT>);
|
13 | }
|
14 | export { ODataGetAllRequestConfig as ODataGetAllRequestConfigLegacy };
|
15 | //# sourceMappingURL=odata-get-all-request-config.d.ts.map |
\ | No newline at end of file |