UNPKG

@sap-cloud-sdk/core

Version:
11 lines 569 B
import { Entity as EntityBase, Constructable } from '../odata-common'; import { CustomField } from './selectable'; /** * Super class for all representations of OData v4 entity types. */ export declare abstract class Entity extends EntityBase { protected static customFieldSelector<EntityT extends Entity, NullableT extends boolean = false>(fieldName: string, entityConstructor: Constructable<EntityT>, isNullable?: NullableT): CustomField<EntityT, NullableT>; readonly _oDataVersion: 'v4'; } export { Entity as EntityV4 }; //# sourceMappingURL=entity.d.ts.map