UNPKG

tsplot

Version:

A CLI and tooling library to plot Typescript project information to different template targets.

11 lines (10 loc) 381 B
import { ProjectFile } from '../../lib'; /** @internal */ export interface LinesOfCodeOptions { linesOfCode?: boolean; minLinesOfCode?: number; } /** @internal */ export declare function collectLinesBreaks(str: string): number; /** @internal */ export declare function collectLinesOfCode(files: ProjectFile[], options: LinesOfCodeOptions): Promise<Record<string, number>>;