blob: 61ba269582ba8b3693ea738c60d2a23f68f07d1e (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* eslint-disable @typescript-eslint/no-explicit-any */
import { ThreadManager } from 'discord.js';
import { BushNewsChannel, BushTextChannel } from '..';
export class BushThreadManager extends ThreadManager {
public declare channel: BushTextChannel | BushNewsChannel;
public constructor(channel: BushTextChannel | BushNewsChannel, iterable?: Iterable<any>) {
super(channel, iterable);
}
}
|