From f9cf43fc47be2d497d92d728ea892246df96d736 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Wed, 29 Dec 2021 16:05:18 -0500 Subject: import type --- src/commands/info/avatar.ts | 2 +- src/commands/info/color.ts | 4 ++-- src/commands/info/guildInfo.ts | 2 +- src/commands/info/pronouns.ts | 2 +- src/commands/info/snowflake.ts | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src/commands/info') 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 { -- cgit