summary refs log tree commit diff
path: root/dist/models/Status.d.ts
blob: 91494d02160c31241fb5a4fc13d256d43f4c3659 (plain) (blame)
1
2
3
4
5
6
export declare type Status = "idle" | "dnd" | "online" | "offline";
export interface ClientStatus {
    desktop?: string;
    mobile?: string;
    web?: string;
}