mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
feat(Util): add WHITE as color resolvable (#3062)
This commit is contained in:
@@ -307,6 +307,7 @@ class ClientDataResolver {
|
||||
* ```
|
||||
* [
|
||||
* 'DEFAULT',
|
||||
* 'WHITE',
|
||||
* 'AQUA',
|
||||
* 'GREEN',
|
||||
* 'BLUE',
|
||||
|
||||
@@ -705,6 +705,7 @@ exports.UserChannelOverrideMap = {
|
||||
|
||||
exports.Colors = {
|
||||
DEFAULT: 0x000000,
|
||||
WHITE: 0xFFFFFF,
|
||||
AQUA: 0x1ABC9C,
|
||||
GREEN: 0x2ECC71,
|
||||
BLUE: 0x3498DB,
|
||||
|
||||
1
typings/index.d.ts
vendored
1
typings/index.d.ts
vendored
@@ -1667,6 +1667,7 @@ declare module 'discord.js' {
|
||||
type CollectorOptions = { time?: number };
|
||||
|
||||
type ColorResolvable = ('DEFAULT'
|
||||
| 'WHITE'
|
||||
| 'AQUA'
|
||||
| 'GREEN'
|
||||
| 'BLUE'
|
||||
|
||||
Reference in New Issue
Block a user