summaryrefslogtreecommitdiffstats
path: root/src/Common/ICodeParser.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/ICodeParser.ts')
-rw-r--r--src/Common/ICodeParser.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Common/ICodeParser.ts b/src/Common/ICodeParser.ts
new file mode 100644
index 0000000..afe2967
--- /dev/null
+++ b/src/Common/ICodeParser.ts
@@ -0,0 +1,9 @@
+import { TextEditor } from "vscode";
+import { IDocGen } from "./IDocGen";
+
+export default interface ICodeParser {
+ /**
+ * @param {TextEditor} activeEditor The open active Editor where the event came from
+ */
+ Parse(activeEditor: TextEditor): IDocGen;
+}