@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
20 lines (19 loc) • 598 B
TypeScript
declare const FlowrFaqTopics: {
readonly 'flowr.use': "✨ Using <i>flowR</i>";
readonly 'flowr.development': "🧑💻 <i>flowR</i> Development";
readonly 'r.packages': "📦 R Packages";
readonly 'editor.configs': "⚙️ Recommended Editor Configs";
};
type Topic = keyof typeof FlowrFaqTopics;
/**
* Manage all questions and answers by topic.
*/
export declare class FaqStore {
private faqs;
private currTopic;
withTopic(topic: Topic): this;
addFaq(question: string, answer: string): this;
private printAllTopics;
toMarkdown(): string;
}
export {};