diff --git a/src/handler/events/messageHandler.ts b/src/handler/events/messageHandler.ts index 8bef8ec..8bf1f76 100644 --- a/src/handler/events/messageHandler.ts +++ b/src/handler/events/messageHandler.ts @@ -6,7 +6,6 @@ import { executeModule, ignoreNonBot, isOneOfCorrectModules } from './observable import { fmt } from '../utilities/messageHelpers'; import Context from '../structures/context'; import * as Files from '../utilities/readFile'; -import type { TextCommand } from '../structures/module'; import { CommandType } from '../structures/enums'; import { asyncResolveArray } from '../utilities/asyncResolveArray'; import { controller } from '../sern'; diff --git a/src/types/handler.ts b/src/types/handler.ts index c7939ee..a89539a 100644 --- a/src/types/handler.ts +++ b/src/types/handler.ts @@ -1,6 +1,6 @@ import type { CommandInteractionOptionResolver } from 'discord.js'; +import type { CommandModule, EventModule, Module } from '../handler/structures/module'; import type { PayloadType } from '../handler/structures/enums'; -import type { CommandModule, EventModule, Module } from './module'; export type Nullish = T | undefined | null; // Thanks to @kelsny