/* 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) { super(channel, iterable); } }