fix(errors.ts) syntax error enum fix

This commit is contained in:
Jacob Nguyen
2022-03-29 14:14:14 -05:00
parent bd2004b452
commit 4671fac123

View File

@@ -2,6 +2,6 @@ export enum SernError {
RESERVED_EVENT = 'Cannot register the reserved ready event. Please use the init property.',
NO_ALIAS = 'You cannot provide an array with elements to a slash command.',
NOT_VALID_MOD_TYPE = 'Detected an unknown module type',
UNDEFINED_MODULE = `A module could not be detected at`
UNDEFINED_MODULE = `A module could not be detected at`,
MISMATCH_MODULE_TYPE = `A module type mismatched with event emitted!`
}