From 673e691c6e26a0abbadb93cf8ef4b1e45ad1accc Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Thu, 11 Feb 2021 20:44:26 +0100 Subject: :wrench: build --- dist/models/Activity.d.ts | 51 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 dist/models/Activity.d.ts (limited to 'dist/models/Activity.d.ts') diff --git a/dist/models/Activity.d.ts b/dist/models/Activity.d.ts new file mode 100644 index 00000000..65e9d202 --- /dev/null +++ b/dist/models/Activity.d.ts @@ -0,0 +1,51 @@ +import { User } from ".."; +import { ClientStatus, Status } from "./Status"; +export interface Presence { + user: User; + guild_id: bigint; + status: Status; + activities: Activity[]; + client_status: ClientStatus; +} +export interface Activity { + name: string; + type: ActivityType; + url?: string; + created_at: number; + timestamps?: { + start: number; + end: number; + }[]; + application_id?: bigint; + details?: string; + state?: string; + emoji?: { + name: string; + id?: bigint; + amimated?: boolean; + }; + party?: { + id?: string; + size?: [number, number]; + }; + assets?: { + large_image: string; + large_text: string; + small_image: string; + small_text: string; + }; + secrets?: { + join?: string; + spectate?: string; + match?: string; + }; + instance?: boolean; + flags?: bigint; +} +export declare enum ActivityType { + GAME = 0, + STREAMING = 1, + LISTENING = 2, + CUSTOM = 4, + COMPETING = 5 +} -- cgit 1.5.1