Removed unused types

This commit is contained in:
2024-09-17 11:22:39 +02:00
parent 50a70797b4
commit 9a4dc03d92

View File

@@ -1,16 +1,3 @@
import { ChatInputCommandInteraction } from "discord.js"
import { ExtendedClient } from "utils/Client.js"
import TZs from "./TimeZones" import TZs from "./TimeZones"
export type TimeZones = typeof TZs[number] export type TimeZones = typeof TZs[number]
export type SubcommandFunc = (interaction: ChatInputCommandInteraction, client?: ExtendedClient) => Promise<void>
export type SnipeCache = {
author: string
content: string
channel: string
createdAt: number
deletedAt: number
attachments: string[]
}