symref
Version:
Static code checker for AI code agents (Windsurf, Cline, etc.)
21 lines • 549 B
TypeScript
import { CallGraphResult } from './CallGraphTypes.js';
import { SymbolReferences } from './symbol-refs.js';
export interface TestPromptContext {
callGraph: CallGraphResult;
symbolRefs: SymbolReferences;
framework: string;
}
export interface SuggestTestOptions {
to: string;
testFramework?: string;
output?: string;
dir?: string;
include?: string;
exclude?: string;
project?: string;
}
export interface SuggestTestResult {
success: boolean;
message: string;
}
//# sourceMappingURL=suggest-test.d.ts.map