Files
metabuilder/interfaces/workspace.d.ts
2026-03-09 22:30:41 +00:00

19 lines
415 B
TypeScript

/**
* Workspace Domain Interfaces
* Types for projects and workspace content
*/
export interface Project {
id: string;
name: string;
description?: string;
workspaceId: string;
starred?: boolean;
updatedAt: string;
color?: string;
workflowCount?: number;
}
export interface ProjectMeta {
workflowCount: number;
lastUpdated: string;
}
//# sourceMappingURL=workspace.d.ts.map