From 2dcdc798ace9bace7fb6800a245f0f3802d0477d Mon Sep 17 00:00:00 2001 From: Kyra Date: Sat, 2 Feb 2019 10:42:13 +0100 Subject: [PATCH] typings: add missing ImageSize numbers (#3045) To match the JS typedef: https://discord.js.org/#/docs/main/master/typedef/ImageURLOptions --- typings/index.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index a97225b7f..d6b95ba60 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1846,7 +1846,10 @@ declare module 'discord.js' { | 'jpg' | 'gif'; - type ImageSize = 128 + type ImageSize = 16 + | 32 + | 64 + | 128 | 256 | 512 | 1024