summary refs log tree commit diff
path: root/rtc/src/models/Status.ts
diff options
context:
space:
mode:
Diffstat (limited to 'rtc/src/models/Status.ts')
-rw-r--r--rtc/src/models/Status.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/rtc/src/models/Status.ts b/rtc/src/models/Status.ts
deleted file mode 100644
index 5a9bf2ca..00000000
--- a/rtc/src/models/Status.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-export type Status = "idle" | "dnd" | "online" | "offline";
-
-export interface ClientStatus {
-	desktop?: string; // e.g. Windows/Linux/Mac
-	mobile?: string; // e.g. iOS/Android
-	web?: string; // e.g. browser, bot account
-}
-
-export const ClientStatus = {
-	desktop: String,
-	mobile: String,
-	web: String,
-};