From f56b442e83e4016015c9123d4308dbf9209eea76 Mon Sep 17 00:00:00 2001 From: Gryffon Bellish Date: Sun, 15 Dec 2019 14:26:09 -0500 Subject: [PATCH] typings(Bitfield): use IterableIterator instead of Iterator (#3599) --- 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 b0774df23..9eb0b4532 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -124,7 +124,7 @@ declare module 'discord.js' { public toArray(): S[]; public toJSON(): number; public valueOf(): number; - public [Symbol.iterator](): Iterator; + public [Symbol.iterator](): IterableIterator; public static FLAGS: object; public static resolve(bit?: BitFieldResolvable): number; }