fix(typings): remove leftover typeof

This commit is contained in:
iCrawl
2019-09-11 02:11:31 +02:00
parent 33ecdd4c50
commit ea9e144190

2
typings/index.d.ts vendored
View File

@@ -1684,7 +1684,7 @@ declare module 'discord.js' {
export class DataStore<K, V, VConstructor = Constructable<V>, R = any> extends Collection<K, V> {
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 holds: VConstructor;
public add(data: any, cache?: boolean, { id, extras }?: { id: K, extras: any[] }): V;