fix(types): Fix bounds for ApplicationCommandOptionTypes.Integer (#4512)

This commit is contained in:
Fleny
2025-10-06 18:19:28 +02:00
committed by GitHub
parent df8cc46882
commit cc9b97220b
+1 -1
View File
@@ -462,7 +462,7 @@ export enum ApplicationCommandOptionTypes {
SubCommand = 1,
SubCommandGroup,
String,
/** Any integer between -2^53 and 2^53 */
/** Any integer between -2^53+1 and 2^53-1 */
Integer,
Boolean,
User,