blob: b610699b407a9df74cc5ee64d606a528289d3668 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { type BushClient, type BushGuild, type BushGuildMember } from '@lib';
import { Role, type Collection, type Snowflake } from 'discord.js';
import { type RawRoleData } from 'discord.js/typings/rawDataTypes';
export class BushRole extends Role {
public declare guild: BushGuild;
public declare readonly members: Collection<Snowflake, BushGuildMember>;
public constructor(client: BushClient, data: RawRoleData, guild: BushGuild) {
super(client, data, guild);
}
}
|