mirror of
https://github.com/danbulant/discord.js
synced 2026-07-09 05:00:48 +00:00
typings(Bitfield): use IterableIterator instead of Iterator (#3599)
This commit is contained in:
parent
43782839ec
commit
f56b442e83
1 changed files with 1 additions and 1 deletions
2
typings/index.d.ts
vendored
2
typings/index.d.ts
vendored
|
|
@ -124,7 +124,7 @@ declare module 'discord.js' {
|
||||||
public toArray(): S[];
|
public toArray(): S[];
|
||||||
public toJSON(): number;
|
public toJSON(): number;
|
||||||
public valueOf(): number;
|
public valueOf(): number;
|
||||||
public [Symbol.iterator](): Iterator<S>;
|
public [Symbol.iterator](): IterableIterator<S>;
|
||||||
public static FLAGS: object;
|
public static FLAGS: object;
|
||||||
public static resolve(bit?: BitFieldResolvable<any>): number;
|
public static resolve(bit?: BitFieldResolvable<any>): number;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue