UNPKG

cmetrix

Version:

CLI to build code metrics charts for your projects

9 lines (8 loc) 391 B
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 {};