UNPKG

@eagleoutice/flowr-dev

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

15 lines (14 loc) 621 B
import { FlowrAnalyzerRMarkdownFilePlugin } from './flowr-analyzer-rmarkdown-file-plugin'; export declare const RmdPattern: RegExp; /** * The plugin provides support for R Markdown (`.rmd`) files */ export declare class FlowrAnalyzerRmdFilePlugin extends FlowrAnalyzerRMarkdownFilePlugin { readonly name = "rmd-file-plugin"; readonly description = "Parses R Markdown files"; /** * Creates a new instance of the R Markdown file plugin. * @param filePattern - The pattern to identify R Markdown files, see {@link RmdPattern} for the default pattern. */ constructor(filePattern?: RegExp); }