-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
38 lines (34 loc) · 732 Bytes
/
types.ts
File metadata and controls
38 lines (34 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
export interface TeamMember {
id: string;
name: string;
skillset: string[];
role: string;
experienceLevel: string;
}
export interface Team {
id: string;
name: string;
projectName: string;
stream: string;
problemStatement: string;
solutionOverview: string;
members: TeamMember[];
createdAt: string;
}
export interface Task {
id: string;
stage: string;
title: string;
description: string;
assignedTo: string;
status: 'pending' | 'in_progress' | 'completed';
deadline?: string;
orderIndex: number;
}
export interface ChatMessage {
id: string;
role: 'user' | 'assistant';
content: string;
timestamp: string;
}
export type Stage = 'Ideation' | 'Design' | 'Build' | 'Test' | 'Pitch';