UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

16 lines (15 loc) 654 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 {};