From 1947c715f5ff846316b2d921b78f1a71a2892d1b Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sat, 5 Mar 2022 15:20:08 -0500 Subject: chore: upgrade deps --- src/commands/dev/test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/commands/dev') diff --git a/src/commands/dev/test.ts b/src/commands/dev/test.ts index cca40a6..3f9cd80 100644 --- a/src/commands/dev/test.ts +++ b/src/commands/dev/test.ts @@ -2,13 +2,13 @@ import { BushCommand, ButtonPaginator, Shared, type BushMessage } from '#lib'; import { Routes } from 'discord-api-types/rest/v9'; import { ActionRow, - ActionRowComponent, ButtonComponent, ButtonStyle, Embed, GatewayDispatchEvents, type ApplicationCommand, - type Collection + type Collection, + type MessageActionRowComponent } from 'discord.js'; import badLinksSecretArray from '../../lib/badlinks-secret.js'; import badLinksArray from '../../lib/badlinks.js'; @@ -81,7 +81,7 @@ export default class TestCommand extends BushCommand { ); return await message.util.reply({ content: 'Test', embeds: [embed], components: [buttonRow] }); } else if (['lots of buttons'].includes(args?.feature?.toLowerCase())) { - const ButtonRows: ActionRow[] = []; + const ButtonRows: ActionRow[] = []; for (let a = 1; a <= 5; a++) { const row = new ActionRow(); for (let b = 1; b <= 5; b++) { @@ -113,7 +113,7 @@ export default class TestCommand extends BushCommand { const embeds = colors.map((c, i) => ({ ...o, title: `Embed Title ${i}`, color: c })); - const ButtonRows: ActionRow[] = []; + const ButtonRows: ActionRow[] = []; for (let a = 1; a <= 5; a++) { const row = new ActionRow(); for (let b = 1; b <= 5; b++) { -- cgit