UNPKG

569 BTypeScriptView Raw
1import { Entity as EntityBase, Constructable } from '../odata-common';
2import { CustomField } from './selectable';
3/**
4 * Super class for all representations of OData v4 entity types.
5 */
6export declare abstract class Entity extends EntityBase {
7 protected static customFieldSelector<EntityT extends Entity, NullableT extends boolean = false>(fieldName: string, entityConstructor: Constructable<EntityT>, isNullable?: NullableT): CustomField<EntityT, NullableT>;
8 readonly _oDataVersion: 'v4';
9}
10export { Entity as EntityV4 };
11//# sourceMappingURL=entity.d.ts.map
\No newline at end of file