trellis
Version:
Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications
13 lines • 534 B
TypeScript
/**
* 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