diff options
Diffstat (limited to 'src/lib/extensions/discord.js/BushThreadManager.ts')
-rw-r--r-- | src/lib/extensions/discord.js/BushThreadManager.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib/extensions/discord.js/BushThreadManager.ts b/src/lib/extensions/discord.js/BushThreadManager.ts new file mode 100644 index 0000000..408ac7f --- /dev/null +++ b/src/lib/extensions/discord.js/BushThreadManager.ts @@ -0,0 +1,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; + constructor(channel: BushTextChannel | BushNewsChannel, iterable?: Iterable<any>) { + super(channel, iterable); + } +} |