sicua
Version:
A tool for analyzing project structure and dependencies
21 lines (20 loc) • 409 B
TypeScript
/**
* Types for complexity analysis
*/
export interface ComplexityAnalysisResult {
componentComplexity: {
[key: string]: number;
};
couplingDegree: {
[key: string]: number;
};
cyclomaticComplexity: {
[key: string]: number;
};
maintainabilityIndex: {
[key: string]: number;
};
cognitiveComplexity: {
[key: string]: number;
};
}