@mvcs/context
Version:
MV* context is a core module acting as a junction point for the application modules
9 lines (8 loc) • 380 B
TypeScript
export declare namespace ContextEvent {
/** Event notifying context is being initialized. */
const INITIALIZING = "mvcs.context.initializing";
/** Event notifying context has benn initialized. */
const INITIALIZED = "mvcs.context.initialized";
/** Event indicating that the context is ready to serve user requests. */
const READY = "mvcs.context.ready";
}