symref
Version:
Static code checker for AI code agents (Windsurf, Cline, etc.)
16 lines (15 loc) • 486 B
TypeScript
import { AnalyzerOptions } from './AnalyzerOptions';
import { CallGraphResult } from './CallGraphTypes';
export * from './SymbolTypes';
export * from './AnalyzerOptions';
export * from './CallGraphTypes';
export interface RuntimeTraceOptions extends AnalyzerOptions {
runtime?: boolean;
env?: string;
method?: string;
}
export interface RuntimeTraceResult extends CallGraphResult {
parameters?: Record<string, any>;
state?: Record<string, any>;
error?: Error;
}