From 1f7ebe256e00583bf0888d3f9e32ea1b8ef1b237 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Thu, 11 Feb 2021 20:44:12 +0100 Subject: :sparkles: updated other models --- src/models/Status.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/models/Status.ts (limited to 'src/models/Status.ts') diff --git a/src/models/Status.ts b/src/models/Status.ts new file mode 100644 index 00000000..c4dab586 --- /dev/null +++ b/src/models/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