@sap-cloud-sdk/odata-common
Version:
SAP Cloud SDK for JavaScript common functions of OData client generator and OpenAPI clint generator.
12 lines (11 loc) • 419 B
TypeScript
import type { EntityBase, Constructable } from '../entity-base';
/**
* Represents the selection of all fields.
* This field should be used in the schema of entities.
*/
export declare class AllFields<EntityT extends EntityBase> {
_fieldName: string;
_entityConstructor: Constructable<EntityT>;
readonly selectable: true;
constructor(_fieldName: string, _entityConstructor: Constructable<EntityT>);
}