diff options
Diffstat (limited to 'src/commands/moulberry-bush')
-rw-r--r-- | src/commands/moulberry-bush/capePerms.ts | 2 | ||||
-rw-r--r-- | src/commands/moulberry-bush/capes.ts | 4 | ||||
-rw-r--r-- | src/commands/moulberry-bush/giveawayPing.ts | 2 | ||||
-rw-r--r-- | src/commands/moulberry-bush/moulHammer.ts | 4 | ||||
-rw-r--r-- | src/commands/moulberry-bush/report.ts | 4 | ||||
-rw-r--r-- | src/commands/moulberry-bush/rule.ts | 4 | ||||
-rw-r--r-- | src/commands/moulberry-bush/serverStatus.ts | 2 |
7 files changed, 11 insertions, 11 deletions
diff --git a/src/commands/moulberry-bush/capePerms.ts b/src/commands/moulberry-bush/capePerms.ts index ddd975d..703f32e 100644 --- a/src/commands/moulberry-bush/capePerms.ts +++ b/src/commands/moulberry-bush/capePerms.ts @@ -1,4 +1,4 @@ -import { BushCommand, BushMessage, BushSlashMessage } from '@lib'; +import { BushCommand, type BushMessage, type BushSlashMessage } from '@lib'; import { MessageEmbed } from 'discord.js'; import got from 'got'; diff --git a/src/commands/moulberry-bush/capes.ts b/src/commands/moulberry-bush/capes.ts index 3590d9f..fab70df 100644 --- a/src/commands/moulberry-bush/capes.ts +++ b/src/commands/moulberry-bush/capes.ts @@ -1,5 +1,5 @@ -import { BushCommand, BushMessage, ButtonPaginator, DeleteButton } from '@lib'; -import { MessageEmbedOptions } from 'discord.js'; +import { BushCommand, ButtonPaginator, DeleteButton, type BushMessage } from '@lib'; +import { type MessageEmbedOptions } from 'discord.js'; import got from 'got'; export default class CapesCommand extends BushCommand { diff --git a/src/commands/moulberry-bush/giveawayPing.ts b/src/commands/moulberry-bush/giveawayPing.ts index 7aa3001..54a31e7 100644 --- a/src/commands/moulberry-bush/giveawayPing.ts +++ b/src/commands/moulberry-bush/giveawayPing.ts @@ -1,4 +1,4 @@ -import { AllowedMentions, BushCommand, BushMessage } from '@lib'; +import { AllowedMentions, BushCommand, type BushMessage } from '@lib'; export default class GiveawayPingCommand extends BushCommand { public constructor() { diff --git a/src/commands/moulberry-bush/moulHammer.ts b/src/commands/moulberry-bush/moulHammer.ts index 5f1c11a..2c10bd4 100644 --- a/src/commands/moulberry-bush/moulHammer.ts +++ b/src/commands/moulberry-bush/moulHammer.ts @@ -1,5 +1,5 @@ -import { BushCommand, BushMessage } from '@lib'; -import { MessageEmbed, User } from 'discord.js'; +import { BushCommand, type BushMessage } from '@lib'; +import { MessageEmbed, type User } from 'discord.js'; export default class MoulHammerCommand extends BushCommand { public constructor() { diff --git a/src/commands/moulberry-bush/report.ts b/src/commands/moulberry-bush/report.ts index ae6d8c7..9a69c4a 100644 --- a/src/commands/moulberry-bush/report.ts +++ b/src/commands/moulberry-bush/report.ts @@ -1,5 +1,5 @@ -import { AllowedMentions, BushCommand, BushMessage } from '@lib'; -import { GuildMember, MessageEmbed } from 'discord.js'; +import { AllowedMentions, BushCommand, type BushMessage } from '@lib'; +import { MessageEmbed, type GuildMember } from 'discord.js'; import moment from 'moment'; export default class ReportCommand extends BushCommand { diff --git a/src/commands/moulberry-bush/rule.ts b/src/commands/moulberry-bush/rule.ts index fa421f5..6beb6b4 100644 --- a/src/commands/moulberry-bush/rule.ts +++ b/src/commands/moulberry-bush/rule.ts @@ -1,5 +1,5 @@ -import { AllowedMentions, BushCommand, BushMessage } from '@lib'; -import { MessageEmbed, User } from 'discord.js'; +import { AllowedMentions, BushCommand, type BushMessage } from '@lib'; +import { MessageEmbed, type User } from 'discord.js'; const rules = [ { diff --git a/src/commands/moulberry-bush/serverStatus.ts b/src/commands/moulberry-bush/serverStatus.ts index f656e4c..17f1090 100644 --- a/src/commands/moulberry-bush/serverStatus.ts +++ b/src/commands/moulberry-bush/serverStatus.ts @@ -1,4 +1,4 @@ -import { BushCommand, BushMessage } from '@lib'; +import { BushCommand, type BushMessage } from '@lib'; import { MessageEmbed } from 'discord.js'; import got from 'got'; |