mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-05-04 04:33:10 +00:00
Added Very Basic Liveblocks Implimentation and README Updates
This commit is contained in:
parent
5a76ac0611
commit
0190fad583
12 changed files with 336 additions and 15 deletions
25
liveblocks.config.ts
Normal file
25
liveblocks.config.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
declare global {
|
||||
interface Liveblocks {
|
||||
Presence: {
|
||||
cursor: { x: number; y: number } | null;
|
||||
};
|
||||
|
||||
Storage: {};
|
||||
|
||||
UserMeta: {
|
||||
id: string;
|
||||
info: {
|
||||
name: string;
|
||||
avatar: string;
|
||||
};
|
||||
};
|
||||
|
||||
RoomEvent: {};
|
||||
|
||||
ThreadMetadata: {};
|
||||
|
||||
RoomInfo: {};
|
||||
}
|
||||
}
|
||||
|
||||
export {};
|
Loading…
Add table
Add a link
Reference in a new issue