Prodigious-Aim-Solutions/Kronicle6

View on GitHub
src/EventTypes.js

Summary

Maintainability
A
0 mins
Test Coverage
// # EventType constants
// These constats are used to reference the various events that Kronicle will trigger.
// Import this object and add events as necessary.
const events = {
    Initialized: "Initialized",
    BeforeModulesLoad: "BeforeModulesLoad",
    ModuleLoaded: "ModuleLoaded",
    AfterModulesLoad: "AfterModulesLoad",
    Ready: "Ready",
    Start: "Start"
};

export {events};