blob: 3f1923246e7d586c9e06b537e7f442f919f2bef1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import type { BushEmoji, BushPresence } from '#lib';
import { Activity } from 'discord.js';
import type { RawActivityData } from 'discord.js/typings/rawDataTypes';
/**
* Represents an activity that is part of a user's presence.
*/
export class BushActivity extends Activity {
public declare emoji: BushEmoji | null;
public constructor(presence: BushPresence, data?: RawActivityData) {
super(presence, data);
}
}
|