Skip to main content
Module

x/discordeno/types/presence.ts

Discord API library for Deno
Go to Latest
File
import { StatusType } from "../types/discord.ts";
export interface ClientStatusPayload { /** The user's status set for an active desktop (Windows, Linux, Mac) application session */ desktop?: StatusType;
/** The user's status set for an active mobile (iOS, Android) application session */ mobile?: StatusType;
/** The user's status set for an active web (browser, bot account) application session */ web?: StatusType;}