import { BaseEntity, RelationType } from "../../../src"; import { Task } from "./Task"; export declare class Project extends BaseEntity { static relations: { readonly tasks: { readonly type: RelationType.OneToMany; readonly to: () => typeof Task; readonly inversedBy: "project"; readonly optional: true; }; }; name: string; description?: string; } //# sourceMappingURL=Project.d.ts.map