mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-15 19:08:20 +00:00
fix(typings): remove leftover typeof
This commit is contained in:
Vendored
+1
-1
@@ -1684,7 +1684,7 @@ declare module 'discord.js' {
|
|||||||
|
|
||||||
export class DataStore<K, V, VConstructor = Constructable<V>, R = any> extends Collection<K, V> {
|
export class DataStore<K, V, VConstructor = Constructable<V>, R = any> extends Collection<K, V> {
|
||||||
constructor(client: Client, iterable: Iterable<any>, holds: VConstructor);
|
constructor(client: Client, iterable: Iterable<any>, holds: VConstructor);
|
||||||
public static readonly [Symbol.species]: typeof CollectionConstructor;
|
public static readonly [Symbol.species]: CollectionConstructor;
|
||||||
public client: Client;
|
public client: Client;
|
||||||
public holds: VConstructor;
|
public holds: VConstructor;
|
||||||
public add(data: any, cache?: boolean, { id, extras }?: { id: K, extras: any[] }): V;
|
public add(data: any, cache?: boolean, { id, extras }?: { id: K, extras: any[] }): V;
|
||||||
|
|||||||
Reference in New Issue
Block a user