/** * Fix Command * * Runs auto-fixes for detected problems. * For remote stages (staging/prod), delegates to pipeline plugin. * For local stages (dev), runs fixes directly. * * ============================================================ * STAGE EXECUTION PATTERN * ============================================================ * See scan.ts for full documentation of how stages work. * * Key points: * - This file asks pipeline plugin canReach(stage) for each stage * - Pipeline decides if stage runs locally or via SSH * - When running on server (FACTIII_ON_SERVER=true), runs locally * ============================================================ */ import type { FixOptions, FixResult } from '../types/index.js'; export declare function fix(options?: FixOptions): Promise; export default fix; //# sourceMappingURL=fix.d.ts.map