UNPKG

448 BTypeScriptView Raw
1import { Constructable, Entity } from '../entity';
2import type { ComplexTypeField } from './complex-type-field';
3/**
4 * Union type to represent the parent of a field. This can either be an entity constructor or a complex type field.
5 */
6export declare type ConstructorOrField<EntityT extends Entity, ComplexT = any> = Constructable<EntityT> | ComplexTypeField<EntityT, ComplexT, boolean, boolean>;
7//# sourceMappingURL=constructor-or-field.d.ts.map
\No newline at end of file