From 5ce7664440e835be788a4e3be6b05cf7327b79e1 Mon Sep 17 00:00:00 2001 From: Daryl Ronningen Date: Mon, 21 Jun 2021 16:17:11 -0700 Subject: [PATCH] style: reorganized imports --- src/commands/utils/vm.ts | 4 ++-- src/lib/structures/command.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/utils/vm.ts b/src/commands/utils/vm.ts index a726842..dfae999 100644 --- a/src/commands/utils/vm.ts +++ b/src/commands/utils/vm.ts @@ -14,9 +14,9 @@ * You should have received a copy of the GNU General Public License * along with ArgonBot. If not, see . */ -import { NodeVM } from 'vm2'; -import { transpile } from 'typescript'; import Command from '@structures/command'; +import { transpile } from 'typescript'; +import { NodeVM } from 'vm2'; import type { Client, Message } from 'discord.js'; diff --git a/src/lib/structures/command.ts b/src/lib/structures/command.ts index 7b062bb..8faf6db 100644 --- a/src/lib/structures/command.ts +++ b/src/lib/structures/command.ts @@ -14,11 +14,11 @@ * You should have received a copy of the GNU General Public License * along with ArgonBot. If not, see . */ -import path from 'path'; +import type { ICommandOptions } from '@utils/types'; import config from 'config'; +import path from 'path'; import type { Client, Message } from 'discord.js'; -import type { ICommandOptions } from '@utils/types'; export default abstract class Command { public readonly client: Client;