diff options
Diffstat (limited to 'dist/models/Status.d.ts')
-rw-r--r-- | dist/models/Status.d.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dist/models/Status.d.ts b/dist/models/Status.d.ts new file mode 100644 index 00000000..91494d02 --- /dev/null +++ b/dist/models/Status.d.ts @@ -0,0 +1,6 @@ +export declare type Status = "idle" | "dnd" | "online" | "offline"; +export interface ClientStatus { + desktop?: string; + mobile?: string; + web?: string; +} |