1import { Collection } from "discord.js"; 2 3declare module "discord.js" { 4 export interface Client { 5 commands: Collection<unknown, any>; 6 } 7}