Image Size 4096 (#2302)

* Image Size 4096

* deno fmt
This commit is contained in:
LTS20050703
2022-06-16 12:04:10 -04:00
committed by GitHub
parent 76e667422b
commit c68d95bc90
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -30,4 +30,4 @@ export function avatarURL(
export type ImageFormat = "jpg" | "jpeg" | "png" | "webp" | "gif" | "json";
/** https://discord.com/developers/docs/reference#image-formatting */
export type ImageSize = 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048;
export type ImageSize = 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096;
-2
View File
@@ -75,5 +75,3 @@ export interface Component {
/** a list of child components */
components?: Component[];
}