mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-18 00:10:12 -07:00
7 lines
92 B
TypeScript
7 lines
92 B
TypeScript
interface Room {
|
|
id: string;
|
|
users: User[];
|
|
isLocked: boolean;
|
|
createdAt: number;
|
|
}
|