From 9a4dc03d92290ef06f15e3545cc65ca85b30bb40 Mon Sep 17 00:00:00 2001 From: Taken Date: Tue, 17 Sep 2024 11:22:39 +0200 Subject: [PATCH] Removed unused types --- src/typings/index.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/typings/index.ts b/src/typings/index.ts index 45c5178..a710bb7 100644 --- a/src/typings/index.ts +++ b/src/typings/index.ts @@ -1,16 +1,3 @@ -import { ChatInputCommandInteraction } from "discord.js" -import { ExtendedClient } from "utils/Client.js" import TZs from "./TimeZones" export type TimeZones = typeof TZs[number] - -export type SubcommandFunc = (interaction: ChatInputCommandInteraction, client?: ExtendedClient) => Promise - -export type SnipeCache = { - author: string - content: string - channel: string - createdAt: number - deletedAt: number - attachments: string[] -}