aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushMessageManager.ts
blob: fb449f2084fff6721047e3445ee8de9bd9e7efe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* eslint-disable @typescript-eslint/no-explicit-any */
import { Collection, MessageManager, Snowflake } from 'discord.js';
import { BushClient, BushDMChannel, BushMessage, BushTextChannel, BushThreadChannel } from '..';

export class BushMessageManager extends MessageManager {
	public declare readonly client: BushClient;
	public declare cache: Collection<Snowflake, BushMessage>;
	public constructor(channel: BushTextChannel | BushDMChannel | BushThreadChannel, iterable?: Iterable<any>) {
		super(channel, iterable);
	}
}