@sap-cloud-sdk/core
Version:
SAP Cloud SDK for JavaScript core
11 lines • 569 B
TypeScript
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