mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 12:33:30 +01:00
fix(typings): remove leftover typeof
This commit is contained in:
2
typings/index.d.ts
vendored
2
typings/index.d.ts
vendored
@@ -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