aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushGuildApplicationCommandManager.ts
blob: 4c80bbabd9a7c22422da322d12fca310dedaec95 (plain)
1
2
3
4
5
6
7
8
9
10
/* eslint-disable @typescript-eslint/no-explicit-any */
import { GuildApplicationCommandManager } from 'discord.js';
import { BushGuild } from '..';

export class BushGuildApplicationCommandManager extends GuildApplicationCommandManager {
	public guild: BushGuild;
	public constructor(guild: BushGuild, iterable?: Iterable<any>) {
		super(guild, iterable);
	}
}