knightrider/types/Client.d.ts

6 lines
151 B
TypeScript
Raw Permalink Normal View History

2025-01-18 01:27:58 +00:00
import { Client, Collection } from 'discord.js';
declare module 'discord.js' {
export interface Client {
commands: Collection<string, any>;
}
}