diff --git a/structures/activity.ts b/structures/activity.ts new file mode 100644 index 000000000..e1a492fc2 --- /dev/null +++ b/structures/activity.ts @@ -0,0 +1,20 @@ +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 +} \ No newline at end of file