@eagleoutice/flowr-dev
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
14 lines (13 loc) • 608 B
TypeScript
import { FlowrAnalyzerRMarkdownFilePlugin } from './flowr-analyzer-rmarkdown-file-plugin';
/**
* The plugin provides support for Quarto R Markdown (`.qmd`) files
*/
export declare class FlowrAnalyzerQmdFilePlugin extends FlowrAnalyzerRMarkdownFilePlugin {
readonly name = "qmd-file-plugin";
readonly description = "Parses Quarto R Markdown files";
/**
* Creates a new instance of the Quarto R Markdown file plugin.
* @param filePattern - The pattern to identify Quarto R Markdown files, see {@link QmdPattern} for the default pattern.
*/
constructor(filePattern?: RegExp);
}