blob: c4dab586f72af63dfa12d3f88af9cf1f17969760 (
plain) (
blame)
1
2
3
4
5
6
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
}
|