Skip to main content
Module

x/discordeno/types/activity.ts

Discord API library for Deno
Go to Latest
File
import { Timestamps } from "../types/discord.ts";
export interface ActivityPayload { name: string; type: number; url?: string; created_at: number; timestamps: Timestamps; details?: string;}
export enum ActivityType { /** Example: "Playing Rocket League" */ Game, /** Example: "Streaming Rocket League" */ Streaming, /** Example: "Listening to spotify" */ Listening, /** Example: ":smiley: I am cool" */ Custom = 4,}