summary refs log tree commit diff
path: root/util/src/interfaces/Status.ts
diff options
context:
space:
mode:
Diffstat (limited to 'util/src/interfaces/Status.ts')
-rw-r--r--util/src/interfaces/Status.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/util/src/interfaces/Status.ts b/util/src/interfaces/Status.ts
new file mode 100644

index 00000000..c4dab586 --- /dev/null +++ b/util/src/interfaces/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 +}