This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
2021-02-13 14:15:59 +01:00

12 lines
294 B
TypeScript

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;
};