UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

10 lines (9 loc) 632 B
import type { FeatureStatisticsWithMeta } from '../../feature'; import type { SummarizedWithProject } from '../../post-processing'; import type { StatisticsSummarizerConfiguration } from '../../../summarizer/summarizer'; export declare function postProcess(featureRoot: string, info: Map<string, FeatureStatisticsWithMeta>, outputPath: string, config: StatisticsSummarizerConfiguration): void; type VariableInfoMap = Map<string, SummarizedWithProject & { linePercentageInFile: number[][]; }>; export declare function writeVariableInfoToCsv(outputPath: string, filename: `${string}.csv`, data: VariableInfoMap): void; export {};