chore: deps

This commit is contained in:
iCrawl
2023-05-12 19:58:51 +02:00
parent d01e8aa8af
commit 7c8849fae5
27 changed files with 1015 additions and 919 deletions

View File

@@ -52,7 +52,7 @@ export class SlashCommandIntegerOption
throw new RangeError('Autocomplete and choices are mutually exclusive to each other.');
}
return { ...this };
return { ...this } as APIApplicationCommandIntegerOption;
}
}

View File

@@ -52,7 +52,7 @@ export class SlashCommandNumberOption
throw new RangeError('Autocomplete and choices are mutually exclusive to each other.');
}
return { ...this };
return { ...this } as APIApplicationCommandNumberOption;
}
}

View File

@@ -63,7 +63,7 @@ export class SlashCommandStringOption extends ApplicationCommandOptionBase {
throw new RangeError('Autocomplete and choices are mutually exclusive to each other.');
}
return { ...this };
return { ...this } as APIApplicationCommandStringOption;
}
}