/** * TypeScript/JavaScript Parser Adapter * * DESIGN.md §4.2 — Structural extraction of top-level declarations * using regex-based parsing. This is a Tier 1 implementation that * extracts functions, classes, interfaces, type aliases, enums, * variables, imports, and exports without requiring tree-sitter. * * Tree-sitter can be swapped in later for full Tier 2 AST fidelity. */ import type { ParserAdapter } from './types.js'; export declare const typescriptParser: ParserAdapter; //# sourceMappingURL=ts-parser.d.ts.map