mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
19 lines
415 B
TypeScript
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
|