knightrider/types/Client.d.ts
2025-01-18 01:27:58 +00:00

6 lines
No EOL
151 B
TypeScript

import { Client, Collection } from 'discord.js';
declare module 'discord.js' {
export interface Client {
commands: Collection<string, any>;
}
}