/** * @fileoverview Dependency Repair Plugin (SPEC Section 8.4) * * Fixes missing cross-chunk dependencies. * * Per PLG-*: * - PLG-1: Creates run-scope hooks * - PLG-3: Transformer must explicitly return modified graph * - PLG-4: Pipeline re-validates after modification * * @module plugins/dependency-repair */ import type { PipelinePlugin } from "./types.js"; /** * Fixes missing cross-chunk dependencies. * * Per SPEC Section 8.4: * - Transformer plugin (may modify graph) * - Identifies broken references (e.g., "ref": "n1" pointing to wrong chunk) * - Repairs dependencies based on semantic analysis */ export declare const dependencyRepairPlugin: PipelinePlugin; //# sourceMappingURL=dependency-repair.d.ts.map