summary refs log tree commit diff
path: root/util/src/interfaces/Status.ts
blob: 5d2e1bbafbca71e8a22270a07392d2188a42a940 (plain) (blame)
1
2
3
4
5
6
7
export type Status = "idle" | "dnd" | "online" | "offline" | "invisible";

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