blob: 5a9bf2ca914cc88515fcbb0f010e5bb9a07d5ea7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
}
export const ClientStatus = {
desktop: String,
mobile: String,
web: String,
};
|