feat(Util): add YELLOW to ColorResolvable (#3182)

This commit is contained in:
izexi
2019-04-14 13:58:33 +01:00
committed by SpaceEEC
parent ca43919642
commit 520810d484
3 changed files with 4 additions and 0 deletions

View File

@@ -422,6 +422,7 @@ exports.Colors = {
AQUA: 0x1ABC9C,
GREEN: 0x2ECC71,
BLUE: 0x3498DB,
YELLOW: 0xFFFF00,
PURPLE: 0x9B59B6,
LUMINOUS_VIVID_PINK: 0xE91E63,
GOLD: 0xF1C40F,

View File

@@ -251,6 +251,7 @@ class Util {
* - `AQUA`
* - `GREEN`
* - `BLUE`
* - `YELLOW`
* - `PURPLE`
* - `LUMINOUS_VIVID_PINK`
* - `GOLD`

2
typings/index.d.ts vendored
View File

@@ -1685,9 +1685,11 @@ declare module 'discord.js' {
}
type ColorResolvable = 'DEFAULT'
| 'WHITE'
| 'AQUA'
| 'GREEN'
| 'BLUE'
| 'YELLOW'
| 'PURPLE'
| 'LUMINOUS_VIVID_PINK'
| 'GOLD'