import { Relation } from 'typeorm'; import { User } from './user.entity.js'; import { WorkflowEntity } from './workflow.entity.js'; export declare class WorkspaceEntity { id: string; title: string; appName: string; isFavourite: boolean; createdAt: Date; updatedAt: Date; workflows: Relation; creator: Relation; createdBy: string; } //# sourceMappingURL=workspace.entity.d.ts.map