diff options
Diffstat (limited to 'src/commands/info')
-rw-r--r-- | src/commands/info/avatar.ts | 2 | ||||
-rw-r--r-- | src/commands/info/color.ts | 4 | ||||
-rw-r--r-- | src/commands/info/guildInfo.ts | 2 | ||||
-rw-r--r-- | src/commands/info/pronouns.ts | 2 | ||||
-rw-r--r-- | src/commands/info/snowflake.ts | 6 |
5 files changed, 8 insertions, 8 deletions
diff --git a/src/commands/info/avatar.ts b/src/commands/info/avatar.ts index 3436b87..ce2543f 100644 --- a/src/commands/info/avatar.ts +++ b/src/commands/info/avatar.ts @@ -1,4 +1,4 @@ -import { ArgType, BushCommand, type BushMessage, type BushSlashMessage } from '#lib'; +import { BushCommand, type ArgType, type BushMessage, type BushSlashMessage } from '#lib'; import { GuildMember, MessageEmbed } from 'discord.js'; export default class AvatarCommand extends BushCommand { diff --git a/src/commands/info/color.ts b/src/commands/info/color.ts index 2f9751b..7f3e593 100644 --- a/src/commands/info/color.ts +++ b/src/commands/info/color.ts @@ -1,8 +1,8 @@ import { AllowedMentions, - ArgType, - BushArgumentTypeCaster, BushCommand, + type ArgType, + type BushArgumentTypeCaster, type BushGuildMember, type BushMessage, type BushRole, diff --git a/src/commands/info/guildInfo.ts b/src/commands/info/guildInfo.ts index 67150f6..e543eee 100644 --- a/src/commands/info/guildInfo.ts +++ b/src/commands/info/guildInfo.ts @@ -1,4 +1,4 @@ -import { ArgType, BushCommand, type BushMessage, type BushSlashMessage } from '#lib'; +import { BushCommand, type ArgType, type BushMessage, type BushSlashMessage } from '#lib'; import { Constants, Guild, diff --git a/src/commands/info/pronouns.ts b/src/commands/info/pronouns.ts index 3dacede..9b9f870 100644 --- a/src/commands/info/pronouns.ts +++ b/src/commands/info/pronouns.ts @@ -1,4 +1,4 @@ -import { ArgType, BushCommand, type BushMessage, type BushSlashMessage } from '#lib'; +import { BushCommand, type ArgType, type BushMessage, type BushSlashMessage } from '#lib'; import { MessageEmbed } from 'discord.js'; export default class PronounsCommand extends BushCommand { diff --git a/src/commands/info/snowflake.ts b/src/commands/info/snowflake.ts index 1658da9..1a41257 100644 --- a/src/commands/info/snowflake.ts +++ b/src/commands/info/snowflake.ts @@ -1,8 +1,7 @@ -import { ArgType, BushCommand, type BushMessage, type BushSlashMessage } from '#lib'; +import { BushCommand, type ArgType, type BushMessage, type BushSlashMessage } from '#lib'; import { MessageEmbed, SnowflakeUtil, - VoiceChannel, type CategoryChannel, type DeconstructedSnowflake, type DMChannel, @@ -12,7 +11,8 @@ import { type Snowflake, type StageChannel, type TextChannel, - type User + type User, + type VoiceChannel } from 'discord.js'; export default class SnowflakeCommand extends BushCommand { |