Newer
Older
percord / dist / models / Status.d.ts
@Flam3rboy Flam3rboy on 13 Feb 2021 294 bytes :zap: Config and database update
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;
};