summary refs log tree commit diff
path: root/Status.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-22 12:41:21 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-22 12:41:21 +0200
commitae2896fa6148cc1366573166368e157d6fa50b82 (patch)
treeb4fbe795d2ee0b4c3b0e21de525195a553fe48ee /Status.ts
parent:construction: typeorm (diff)
downloadserver-ae2896fa6148cc1366573166368e157d6fa50b82.tar.xz
:construction: typeorm
Diffstat (limited to '')
-rw-r--r--Status.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/Status.ts b/Status.ts
new file mode 100644

index 00000000..c4dab586 --- /dev/null +++ b/Status.ts
@@ -0,0 +1,7 @@ +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 +}