1 files changed, 13 insertions, 0 deletions
diff --git a/rtc/src/models/Status.ts b/rtc/src/models/Status.ts
new file mode 100644
index 00000000..5a9bf2ca
--- /dev/null
+++ b/rtc/src/models/Status.ts
@@ -0,0 +1,13 @@
+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,
+};
|