summary refs log tree commit diff
path: root/src/models/Status.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/Status.ts')
-rw-r--r--src/models/Status.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/models/Status.ts b/src/models/Status.ts
index c4dab586..5a9bf2ca 100644
--- a/src/models/Status.ts
+++ b/src/models/Status.ts
@@ -5,3 +5,9 @@ export interface ClientStatus {
 	mobile?: string; // e.g. iOS/Android
 	web?: string; // e.g. browser, bot account
 }
+
+export const ClientStatus = {
+	desktop: String,
+	mobile: String,
+	web: String,
+};