cmetrix
Version:
CLI to build code metrics charts for your projects
9 lines (8 loc) • 391 B
TypeScript
import { ProjectMetrics } from '../types';
import { GenerateOutputCreation } from './types';
interface WithTemplate {
templatePath?: string;
}
export declare type GenerateHTMLOutputCreation = GenerateOutputCreation & WithTemplate;
export declare function makeGenerateHTMLOutput(creation: GenerateHTMLOutputCreation): (metrics: ProjectMetrics[], extras?: any) => Promise<any>;
export {};