mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-31 16:00:07 +00:00
20 lines
333 B
TypeScript
20 lines
333 B
TypeScript
import { Timestamps } from "../types/discord.ts";
|
|
|
|
export interface ActivityPayload {
|
|
/** The activity's name */
|
|
name: string;
|
|
|
|
/** */
|
|
type: number;
|
|
url?: string;
|
|
created_at: number;
|
|
timestamps: Timestamps;
|
|
details?: string;
|
|
}
|
|
|
|
export enum ActivityType {
|
|
Game,
|
|
Streaming,
|
|
Listening,
|
|
Custom = 4
|
|
} |