Interface Metric

Generic metric interface that all metrics should implement

interface Metric {
    name: string;
    calculate(classInfo): number;
    description: string;
}

Properties

Methods

Properties

name: string
description: string

Methods