aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushUserManager.d.ts
blob: 595332aef48beda114409931d509eb5d50e57a03 (plain)
1
2
3
4
5
6
7
8
import type { BushClient, BushUser, BushUserResolvable } from '#lib';
import { CachedManager, type BaseFetchOptions, type Snowflake } from 'discord.js';
import type { RawUserData } from 'discord.js/typings/rawDataTypes';

export class BushUserManager extends CachedManager<Snowflake, BushUser, BushUserResolvable> {
	public constructor(client: BushClient, iterable?: Iterable<RawUserData>);
	public fetch(id: Snowflake, options?: BaseFetchOptions): Promise<BushUser>;
}