import Collection from "./collection.ts"; import { Message } from "../structures/message.ts"; import { Guild } from "../structures/guild.ts"; import { Channel } from "../structures/channel.ts"; export interface CacheData { guilds: Collection; channels: Collection; messages: Collection; unavailableGuilds: Collection; } export const cache: CacheData = { guilds: new Collection(), channels: new Collection(), messages: new Collection(), unavailableGuilds: new Collection(), };