import { BerryOrm } from "../core/berry-orm.class"; import { PrimaryKey } from "../field/field-values/primary-key.type"; import { AnyEntity } from "./any-entity.type"; export interface EntityType { new (orm: BerryOrm, primaryKey: PrimaryKey): Entity; prototype: Entity; }