UNPKG

@sap-cloud-sdk/odata-common

Version:

SAP Cloud SDK for JavaScript common functions of OData client generator and OpenAPI clint generator.

9 lines (8 loc) 473 B
import type { EntityBase } from '../entity-base'; import type { EdmTypeField } from './edm-type-field'; import type { OrderableEdmTypeField } from './orderable-edm-type-field'; /** * A complex type contains multiple properties. * This type represents the possible types of these properties. */ export type ComplexTypePropertyFields<EntityT extends EntityBase> = EdmTypeField<EntityT, any, any, boolean, false> | OrderableEdmTypeField<EntityT, any, any, boolean, false>;