feat(prefix): make defaultPrefix optional

This commit is contained in:
EvolutionX
2022-04-20 09:56:18 +05:30
committed by Jacob Nguyen
parent b963f51a36
commit f6b88dcdc8

View File

@@ -12,7 +12,7 @@ import type { DiscordEvent } from '../../types/handler';
*/
interface Wrapper {
readonly client: Client;
readonly defaultPrefix: string;
readonly defaultPrefix?: string;
readonly commands: string;
readonly events? : DiscordEvent[];
}