-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathliveblocks.config.ts
More file actions
58 lines (50 loc) · 980 Bytes
/
Copy pathliveblocks.config.ts
File metadata and controls
58 lines (50 loc) · 980 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
declare global {
interface Liveblocks {
Presence: {
cursor: { x: number; y: number } | null
draggingNode: {
nodeId: string
position: { x: number; y: number }
} | null
}
Storage: {
nodes: {
id: string
type: string
position: { x: number; y: number }
data: {
imageUrl: string
category: string
title: string
content: string
link: string
user: {
name: string
profileUrl: string
}
}
}[]
edges: {
id: string
source: string
target: string
}[]
}
UserMeta: {
id: string
info: {
name: string
avatar?: string
}
}
RoomEvent: Record<string, never>
ThreadMetadata: {
x: number
y: number
zIndex: number
resolved?: boolean
}
RoomInfo: Record<string, never>
}
}
export {}