mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 07:02:28 +03:00
13 lines
538 B
TypeScript
13 lines
538 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/activity/client_status.ts
|
|
|
|
|
|
/** https://discord.com/developers/docs/topics/gateway#client-status-object */
|
|
export interface ClientStatus {
|
|
/** The user's status set for an active desktop (Windows, Linux, Mac) application session */
|
|
desktop?: string;
|
|
/** The user's status set for an active mobile (iOS, Android) application session */
|
|
mobile?: string;
|
|
/** The user's status set for an active web (browser, bot account) application session */
|
|
web?: string;
|
|
}
|