Interface CountMetricsResult

Result structure for count metrics analysis

interface CountMetricsResult {
    filePath: string;
    className?: string;
    metric: string;
    value: number;
    threshold?: number;
    passes: boolean;
}

Properties

filePath: string
className?: string
metric: string
value: number
threshold?: number
passes: boolean