mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-19 04:53:30 +01:00
feat(LimitedCollection): export LimitedCollection (#6043)
* feat(LimitedCollection): export LimitedCollection * fix: remove @private * fix: typings
This commit is contained in:
5
typings/index.d.ts
vendored
5
typings/index.d.ts
vendored
@@ -911,6 +911,11 @@ export class InviteGuild extends AnonymousGuild {
|
||||
public welcomeScreen: WelcomeScreen | null;
|
||||
}
|
||||
|
||||
export class LimitedCollection<K, V> extends Collection<K, V> {
|
||||
public constructor(maxSize?: number, iterable?: Iterable<readonly [K, V]>);
|
||||
public maxSize: number;
|
||||
}
|
||||
|
||||
export class Message extends Base {
|
||||
public constructor(client: Client, data: unknown, channel: TextChannel | DMChannel | NewsChannel | ThreadChannel);
|
||||
private patch(data: unknown): Message;
|
||||
|
||||
Reference in New Issue
Block a user