9 lines
682 B
TypeScript
9 lines
682 B
TypeScript
// ─── Event Registry ─────────────────────────────────────────────
|
|
export type { AppEventRegistry, AppEvents } from './events.registry';
|
|
|
|
// ─── Event Bus (Core) ───────────────────────────────────────────
|
|
export { eventBus, publish, subscribe } from './event-bus';
|
|
|
|
// ─── React Hooks ────────────────────────────────────────────────
|
|
export { useAppEvent, usePublishEvent } from './hooks';
|