/** * WASM output-parser module pin. * * Datamitsu turns a tool's machine-readable output into structured diagnostics with a signed * Rust→WASM parser module, shipped as a versioned asset on the datamitsu GitHub release. Tools opt * in by name via `outputParser` (see ./tools.ts); a module declared but unreferenced is harmless. * * The single module dispatches every tool's parser by name, so one `parsers` entry ("core") serves * all of them. It is downloaded once and SHA-256 verified against `hash` before it is loaded into * the sandboxed WASM runtime. * * Pinned to the datamitsu release this config targets (keep in sync with getMinVersion in * ./datamitsu.config.ts). On a version bump, update BOTH the version below and the hash — take it * from the release's signed checksums.txt entry for `datamitsu_parsers_.wasm`. */ export declare const parsers: config.MapOfParsers;