6 lines
151 B
TypeScript
6 lines
151 B
TypeScript
|
import { Client, Collection } from 'discord.js';
|
||
|
declare module 'discord.js' {
|
||
|
export interface Client {
|
||
|
commands: Collection<string, any>;
|
||
|
}
|
||
|
}
|