chore: some interfaces for client-side... might remove if not usefull

This commit is contained in:
Corban-Lee Jones 2025-04-29 17:09:52 +01:00
parent 39e67c1088
commit 1e5c8a821e

10
src/types/client.d.ts vendored Normal file
View File

@ -0,0 +1,10 @@
import { Channel } from "discord.js";
declare global {
interface Window {
guildId: string;
channels: Channel[];
}
}
export {};