mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 13:14:06 +01:00
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
|
export declare type Status = "idle" | "dnd" | "online" | "offline";
|
||
|
export interface ClientStatus {
|
||
|
desktop?: string;
|
||
|
mobile?: string;
|
||
|
web?: string;
|
||
|
}
|