From ae2896fa6148cc1366573166368e157d6fa50b82 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sun, 22 Aug 2021 12:41:21 +0200 Subject: :construction: typeorm --- Status.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Status.ts (limited to 'Status.ts') 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 +} -- cgit 1.5.1