mirror of
https://github.com/SrIzan10/handler.git
synced 2026-05-01 10:45:17 +00:00
8 lines
395 B
TypeScript
8 lines
395 B
TypeScript
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`
|
|
MISMATCH_MODULE_TYPE = `A module type mismatched with event emitted!`
|
|
}
|