jillo-bot/src/types/index.d.ts

7 lines
145 B
TypeScript
Raw Normal View History

2022-06-08 02:57:15 +02:00
import { Collection } from 'discord.js';
declare module 'discord.js' {
export interface Client {
commands: Collection<unknown, any>;
}
}