-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
40 lines (37 loc) · 755 Bytes
/
Copy pathtypes.ts
File metadata and controls
40 lines (37 loc) · 755 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
39
40
export type ElementType = 'text' | 'shape' | 'icon' | 'chart' | 'image';
export interface CanvasElement {
id: string;
type: ElementType;
x: number;
y: number;
width: number;
height: number;
content?: string;
color?: string;
fontSize?: number;
fontWeight?: string;
opacity?: number;
rotation?: number;
shapeType?: 'rect' | 'circle' | 'triangle';
chartData?: any[];
zIndex: number;
}
export type SidebarTab =
| 'Templates'
| 'Text'
| 'Shapes'
| 'Icons'
| 'Uploads'
| 'Charts'
| 'Hand'
| 'Collaboration';
export interface PresenceUser {
id: string;
name: string;
color: string;
cursorX: number;
cursorY: number;
isAi?: boolean;
isTyping?: boolean;
status?: 'online' | 'away' | 'focus';
}