diff --git a/typings/index.d.ts b/typings/index.d.ts index d5f8dcf58..ad9baa67e 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -279,7 +279,7 @@ declare module 'discord.js' { public array(): V[]; public clone(): Collection; public concat(...collections: Collection[]): Collection; - public each(fn: (value: V, key: K, collection: Collection) => void, thisArg?: any): void; + public each(fn: (value: V, key: K, collection: Collection) => void, thisArg?: any): Collection; public equals(collection: Collection): boolean; public every(fn: (value: V, key: K, collection: Collection) => boolean, thisArg?: any): boolean; public filter(fn: (value: V, key: K, collection: Collection) => boolean, thisArg?: any): Collection;