blob: 424a16b2b28a9a7ca1ef514fc0a47f23f877a9d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
export declare type Status = "idle" | "dnd" | "online" | "offline";
export interface ClientStatus {
desktop?: string;
mobile?: string;
web?: string;
}
export declare const ClientStatus: {
desktop: StringConstructor;
mobile: StringConstructor;
web: StringConstructor;
};
|