@discordjs/builders 1.2.1-dev.1663243460-d14d47b.0 → 1.2.1-dev.1663329857-1c5b78f.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1414,7 +1414,7 @@ declare class SlashCommandBuilder {
1414
1414
  }
1415
1415
  interface SlashCommandBuilder extends SharedNameAndDescription, SharedSlashCommandOptions {
1416
1416
  }
1417
- interface SlashCommandSubcommandsOnlyBuilder extends SharedNameAndDescription, Pick<SlashCommandBuilder, 'addSubcommand' | 'addSubcommandGroup' | 'toJSON'> {
1417
+ interface SlashCommandSubcommandsOnlyBuilder extends Omit<SlashCommandBuilder, Exclude<keyof SharedSlashCommandOptions, 'options'>> {
1418
1418
  }
1419
1419
  interface SlashCommandOptionsOnlyBuilder extends SharedNameAndDescription, SharedSlashCommandOptions, Pick<SlashCommandBuilder, 'toJSON'> {
1420
1420
  }