aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushGuildApplicationCommandManager.ts
blob: 3dd79a412fd80f6299b813563b52763bd48002ae (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 './BushGuild';

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