/** * PCB autorouter – slim orchestrator. * * The heavy logic has been extracted into focused modules: * - pcb_autoroute_helpers.ts – shared types, helpers, serialization lock * - pcb_autoroute_manual_routes.ts – manual route pre-processing * - pcb_autoroute_mst.ts – MST single-net routing * - pcb_autoroute_pairwise.ts – pairwise routing fallback */ import { IAutorouteOptions, IAutorouteResult } from './pcb_interfaces.js'; import { PCB } from './pcb.js'; export { enqueueAutoroute } from './pcb_autoroute_helpers.js'; export declare function autoroute(pcb: PCB, options: IAutorouteOptions): IAutorouteResult; //# sourceMappingURL=pcb_autoroute.d.ts.map