/** * `quickback check` — fast typecheck of the AUTHORED tree. * * Runs `tsc -p quickback/tsconfig.json --noEmit` — the tsconfig the compiler * emits on every compile, which lights up the authored `quickback/` tree * (actions, lib, table files, `.quickback/` typed helpers). No compile, no * server, no Docker: this is the editor's view of your source, on demand and * CI-friendly. * * The authored-tree typing files are GENERATED (`quickback compile` writes * `quickback/tsconfig.json` + the per-feature `.quickback/` helper dirs), so * a fresh clone — or a project that has never compiled — fails fast with a * pointer at `quickback compile` instead of a wall of unresolvable imports. * * Exit codes (CI contract): * 0 — typecheck clean * 1 — type errors (tsc's own failure code passes through) * 2 — setup missing (no quickback/tsconfig.json, or no tsc available) * * `--watch` hands tsc its own `--watch` mode — no bespoke file watcher, the * TypeScript incremental watcher is the right tool and already installed. */ export declare function check(args: string[]): Promise; //# sourceMappingURL=check.d.ts.map