From e013968b5e7df3dd8e35ecb7ad53518d2cb2a051 Mon Sep 17 00:00:00 2001 From: hzmi Date: Sun, 5 May 2024 12:44:05 +0000 Subject: [PATCH] fix(CommandStore): fix imports --- packages/framework/src/Stores/CommandStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/framework/src/Stores/CommandStore.ts b/packages/framework/src/Stores/CommandStore.ts index a4d04bee..f1a03c17 100644 --- a/packages/framework/src/Stores/CommandStore.ts +++ b/packages/framework/src/Stores/CommandStore.ts @@ -1,6 +1,6 @@ import { AliasStore } from "@sapphire/pieces"; import type { APIApplicationCommandOption, RESTPostAPIApplicationCommandsJSONBody } from "discord-api-types/v10"; -import { Routes } from "discord-api-types/v10.js"; +import { Routes } from "discord-api-types/v10"; import { Events } from "../Utilities/EventEnums.js"; import { Command } from "./Command.js";