From d3e5bde05fb0ef609c4936b317b3095e1ee43f4a Mon Sep 17 00:00:00 2001 From: Jacob Date: Tue, 24 Sep 2024 10:31:05 +0800 Subject: [PATCH] Remove unused import --- Setup.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Setup.ts b/Setup.ts index 2a1ccf8..02e33e8 100644 --- a/Setup.ts +++ b/Setup.ts @@ -1,14 +1,7 @@ /* eslint-disable require-await */ /* eslint-disable no-console */ import chalk from 'chalk'; -import { - ApplicationEmoji, - Client, - ClientApplication, - GatewayIntentBits, - OAuth2Scopes, - PermissionsBitField -} from 'discord.js'; +import { ApplicationEmoji, Client, GatewayIntentBits, OAuth2Scopes, PermissionsBitField } from 'discord.js'; import { confirm, input, number, password } from '@inquirer/prompts'; import { existsSync, readdirSync, unlinkSync, writeFileSync } from 'fs'; const delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));