blob: c5464a5593aed3cf60d97a2562d0af4582e56682 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { type BushClient, type BushGuild, type BushGuildMember, type BushUser } from '@lib';
import { Presence } from 'discord.js';
import { type RawPresenceData } from 'discord.js/typings/rawDataTypes';
export class BushPresence extends Presence {
public declare guild: BushGuild | null;
public declare readonly member: BushGuildMember | null;
public declare readonly user: BushUser | null;
public constructor(client: BushClient, data?: RawPresenceData) {
super(client, data);
}
}
|