typings: add missing ImageSize numbers (#3045)

To match the JS typedef: https://discord.js.org/#/docs/main/master/typedef/ImageURLOptions
This commit is contained in:
Kyra
2019-02-02 10:42:13 +01:00
committed by SpaceEEC
parent 3dff5058f0
commit 2dcdc798ac

5
typings/index.d.ts vendored
View File

@@ -1846,7 +1846,10 @@ declare module 'discord.js' {
| 'jpg'
| 'gif';
type ImageSize = 128
type ImageSize = 16
| 32
| 64
| 128
| 256
| 512
| 1024