Updated import

This commit is contained in:
2024-01-12 17:59:20 +01:00
parent 52f170c4a8
commit 9bcc42b020
5 changed files with 132 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ import { Button } from "../interfaces"
import { Modal } from "../interfaces"
import { Autocomplete } from "../interfaces"
import env from "./Env"
import { autoDeployCommands } from "./Autodeploy"
import autoDeployCommands from "./Autodeploy"
import { loadAllEvents } from "./Events"
export class ExtendedClient extends Client {

8
src/utils/Types.ts Normal file
View File

@@ -0,0 +1,8 @@
export type SnipeCache = {
author: string
content: string
channel: string
createdAt: number
deletedAt: number
attachments: string[]
}