diff --git a/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionChannelTypesMixin.ts b/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionChannelTypesMixin.ts index f5986d40d5c1..83cb16b2b12c 100644 --- a/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionChannelTypesMixin.ts +++ b/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionChannelTypesMixin.ts @@ -1,7 +1,6 @@ import { s } from '@sapphire/shapeshift'; import { ChannelType } from 'discord-api-types/v10'; -import type { RestOrArray } from '../../../util/normalizeArray'; -import { normalizeArray } from '../../../util/normalizeArray'; +import { normalizeArray, type RestOrArray } from '../../../util/normalizeArray'; /** * The allowed channel types used for a channel option in a slash command builder. diff --git a/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionWithChoicesMixin.ts b/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionWithChoicesMixin.ts index 557af027078a..6bc75d24a44e 100644 --- a/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionWithChoicesMixin.ts +++ b/packages/builders/src/interactions/slashCommands/mixins/ApplicationCommandOptionWithChoicesMixin.ts @@ -1,7 +1,6 @@ import { s } from '@sapphire/shapeshift'; import { ApplicationCommandOptionType, type APIApplicationCommandOptionChoice } from 'discord-api-types/v10'; -import type { RestOrArray } from '../../../util/normalizeArray.js'; -import { normalizeArray } from '../../../util/normalizeArray.js'; +import { normalizeArray, type RestOrArray } from '../../../util/normalizeArray.js'; import { localizationMapPredicate, validateChoicesLength } from '../Assertions.js'; const stringPredicate = s.string.lengthGreaterThanOrEqual(1).lengthLessThanOrEqual(100);