summary refs log tree commit diff
path: root/dist/models/Activity.d.ts
blob: 57462d60bae90a9524f38857278205393463d6dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { User } from "..";
import { ClientStatus, Status } from "./Status";
import { Types } from "mongoose";
export interface Presence {
    user: User;
    guild_id?: string;
    status: Status;
    activities: Activity[];
    client_status: ClientStatus;
}
export interface Activity {
    name: string;
    type: ActivityType;
    url?: string;
    created_at?: Date;
    timestamps?: {
        start?: number;
        end?: number;
    }[];
    application_id?: string;
    details?: string;
    state?: string;
    emoji?: {
        name: string;
        id?: string;
        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 const Activity: {
    name: StringConstructor;
    type: NumberConstructor;
    $url: StringConstructor;
    $created_at: DateConstructor;
    $timestamps: {
        $start: NumberConstructor;
        $end: NumberConstructor;
    }[];
    $application_id: StringConstructor;
    $details: StringConstructor;
    $state: StringConstructor;
    $emoji: {
        $name: StringConstructor;
        $id: StringConstructor;
        $amimated: BooleanConstructor;
    };
    $party: {
        $id: StringConstructor;
        $size: NumberConstructor[];
    };
    $assets: {
        $large_image: StringConstructor;
        $large_text: StringConstructor;
        $small_image: StringConstructor;
        $small_text: StringConstructor;
    };
    $secrets: {
        $join: StringConstructor;
        $spectate: StringConstructor;
        $match: StringConstructor;
    };
    $instance: BooleanConstructor;
    $flags: typeof Types.Long;
};
export declare enum ActivityType {
    GAME = 0,
    STREAMING = 1,
    LISTENING = 2,
    CUSTOM = 4,
    COMPETING = 5
}