aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushThreadManager.ts
blob: 76eaf226710638742f8d606686b4475f435bb498 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* eslint-disable @typescript-eslint/no-explicit-any */
import { ThreadManager } from 'discord.js';
import { BushNewsChannel } from './BushNewsChannel';
import { BushTextChannel } from './BushTextChannel';

export class BushThreadManager extends ThreadManager {
	public declare channel: BushTextChannel | BushNewsChannel;
	public constructor(channel: BushTextChannel | BushNewsChannel, iterable?: Iterable<any>) {
		super(channel, iterable);
	}
}