Newer
Older
percord / src / models / Status.ts
@Flam3rboy Flam3rboy on 11 Feb 2021 222 bytes :sparkles: updated other models
export type Status = "idle" | "dnd" | "online" | "offline";

export interface ClientStatus {
	desktop?: string; // e.g. Windows/Linux/Mac
	mobile?: string; // e.g. iOS/Android
	web?: string; // e.g. browser, bot account
}