1 | import { Entity as EntityBase, Constructable } from '../odata-common';
|
2 | import { CustomField } from './selectable';
|
3 | /**
|
4 | * Super class for all representations of OData v4 entity types.
|
5 | */
|
6 | export 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 | }
|
10 | export { Entity as EntityV4 };
|
11 | //# sourceMappingURL=entity.d.ts.map |
\ | No newline at end of file |