#!/usr/bin/env bun /** * ts-repair CLI * * Command-line interface for the oracle-guided TypeScript repair engine. * * Commands: * ts-repair tsc -- [tsc args] Run tsc with optional repair features * ts-repair check Convenience wrapper for tsc --noEmit * ts-repair plan Generate a verified repair plan * ts-repair apply Apply repairs to files * ts-repair explain Explain a repair candidate * ts-repair repair Generate plan + optional auto-apply (new) * ts-repair preview Preview budget impact without verification (new) * ts-repair mcp-server Run MCP server for agent integration * * See docs/CLI.md for full specification. */ export {}; //# sourceMappingURL=cli.d.ts.map