UNPKG

trellis

Version:

Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications

12 lines 362 B
/** * Python Parser Adapter * * Tier 1 regex-based parser for Python source files. * Extracts classes, functions, decorators, async functions, * type hints, imports, and module-level variables. * * @see TRL-5 */ import type { ParserAdapter } from './types.js'; export declare const pythonParser: ParserAdapter; //# sourceMappingURL=python-parser.d.ts.map