aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushChannelManager.d.ts
blob: 7ebeb7960d3072a5a1611050ae465ff604479359 (plain)
1
2
3
4
5
6
7
8
import { type BushChannel, type BushChannelResolvable } from '@lib';
import { CachedManager, type Client, type FetchChannelOptions, type Snowflake } from 'discord.js';
import { type RawChannelData } from 'discord.js/typings/rawDataTypes';

export class BushChannelManager extends CachedManager<Snowflake, BushChannel, BushChannelResolvable> {
	public constructor(client: Client, iterable: Iterable<RawChannelData>);
	public fetch(id: Snowflake, options?: FetchChannelOptions): Promise<BushChannel | null>;
}