diff options
author | Nobody <git@n0bodysec.com> | 2022-03-08 10:52:54 -0300 |
---|---|---|
committer | Erkin Alp Güney <erkinalp9035@gmail.com> | 2022-03-08 18:08:32 +0300 |
commit | c9b581c84214f21fcb5ce49da565825b0e9b4d22 (patch) | |
tree | 7cb835d48608c7514010d55b7138f44cdb490a9a /util/src/interfaces | |
parent | fix(api): working invisible status type (diff) | |
download | server-c9b581c84214f21fcb5ce49da565825b0e9b4d22.tar.xz |
fix(util): working invisible status type
Diffstat (limited to 'util/src/interfaces')
-rw-r--r-- | util/src/interfaces/Status.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/interfaces/Status.ts b/util/src/interfaces/Status.ts index c4dab586..5d2e1bba 100644 --- a/util/src/interfaces/Status.ts +++ b/util/src/interfaces/Status.ts @@ -1,4 +1,4 @@ -export type Status = "idle" | "dnd" | "online" | "offline"; +export type Status = "idle" | "dnd" | "online" | "offline" | "invisible"; export interface ClientStatus { desktop?: string; // e.g. Windows/Linux/Mac |