From ea9e1441905e67e2627a6f5e80a8d989d01376c5 Mon Sep 17 00:00:00 2001 From: iCrawl Date: Wed, 11 Sep 2019 02:11:31 +0200 Subject: [PATCH] fix(typings): remove leftover typeof --- typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index c694fa260..d71dde4d7 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1684,7 +1684,7 @@ declare module 'discord.js' { export class DataStore, R = any> extends Collection { constructor(client: Client, iterable: Iterable, 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;