symref
Version:
Static code checker for AI code agents (Windsurf, Cline, etc.)
12 lines • 438 B
JavaScript
import { BaseCommand } from './BaseCommand.js';
import { MermaidGenerator } from '../utils/MermaidGenerator.js';
export class BaseGraphCommand extends BaseCommand {
constructor(options) {
super(options);
this.mermaidGenerator = new MermaidGenerator();
}
generateMermaidOutput(result, outputPath) {
this.mermaidGenerator.generate(result, outputPath);
}
}
//# sourceMappingURL=BaseGraphCommand.js.map