fix(AllowedImageSizes): add new image sizes (#6754)

This commit is contained in:
ObscuritySRL
2021-10-04 18:10:54 -04:00
committed by GitHub
parent c5421af68e
commit d0025beb7b
2 changed files with 3 additions and 3 deletions

2
typings/index.d.ts vendored
View File

@@ -2980,7 +2980,7 @@ export interface AddGuildMemberOptions {
export type AllowedImageFormat = 'webp' | 'png' | 'jpg' | 'jpeg';
export type AllowedImageSize = 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096;
export type AllowedImageSize = 16 | 32 | 64 | 128 | 256 | 300 | 512 | 600 | 1024 | 2048 | 4096;
export type AllowedPartial = User | Channel | GuildMember | Message | MessageReaction;