nice integration of typescript

This commit is contained in:
Arjun Patel
2022-01-09 22:51:20 -08:00
parent 1e013e71e9
commit 40d5e71833
6 changed files with 131 additions and 14 deletions
+12
View File
@@ -0,0 +1,12 @@
export class User {
id: string;
nickname: string;
}
export enum UserStatus {
online = "online",
offline = "offline",
inCall = "in call",
busy = "busy"
}