@sap-cloud-sdk/core
Version:
SAP Cloud SDK for JavaScript core
11 lines • 560 B
TypeScript
import { Entity as EntityBase, Constructable } from '../odata-common';
import { CustomField } from './selectable';
/**
* Super class for all representations of OData v2 entity types.
*/
export declare 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: 'v2';
}
export { Entity as EntityV2 };
//# sourceMappingURL=entity.d.ts.map