1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-22 18:51:36 +02:00
server/dist/models/Status.d.ts

12 lines
294 B
TypeScript
Raw Normal View History

2021-02-11 20:44:26 +01:00
export declare type Status = "idle" | "dnd" | "online" | "offline";
export interface ClientStatus {
desktop?: string;
mobile?: string;
web?: string;
}
2021-02-13 14:15:59 +01:00
export declare const ClientStatus: {
desktop: StringConstructor;
mobile: StringConstructor;
web: StringConstructor;
};