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
commit4a34892d46165db9309a55484aff2e1a67ad91bc (patch)
treedfe5d93c9ae169b413a548b4ea5aeef948801dea /Status.ts
parent:construction: typeorm (diff)
downloadserver-4a34892d46165db9309a55484aff2e1a67ad91bc.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 +}