/** * Event fabrication detector. * * Semantic events should originate from runtime execution. Routes, jobs, * UI handlers, and tests should not fabricate domain events. * * This detector scans Next.js route files (and equivalents) for patterns * that suggest event creation outside the runtime, e.g.: * - eventBus.publish(...) * - emit('Something.happened', ...) * - new ManifestEvent(...) * * Files under approved runtime/adapter paths are exempted. */ import type { Detector } from './types.js'; export declare const eventFabricationDetector: Detector; //# sourceMappingURL=event-fabrication.d.ts.map