@sap-cloud-sdk/core
Version:
SAP Cloud SDK for JavaScript core
7 lines • 448 B
TypeScript
import { Constructable, Entity } from '../entity';
import type { ComplexTypeField } from './complex-type-field';
/**
* Union type to represent the parent of a field. This can either be an entity constructor or a complex type field.
*/
export declare type ConstructorOrField<EntityT extends Entity, ComplexT = any> = Constructable<EntityT> | ComplexTypeField<EntityT, ComplexT, boolean, boolean>;
//# sourceMappingURL=constructor-or-field.d.ts.map