summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CodeParser.ts
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2017-10-06 17:34:19 +0200
committerChristoph Schlosser <christoph@linux.com>2017-10-06 17:35:18 +0200
commitcf5e94e992237bc2f32f0ec92c6babb4b93de612 (patch)
treeec5558e80268aaaee9acf92a877a06b562877f45 /src/CodeParser/CodeParser.ts
downloaddoxdocgen-cf5e94e992237bc2f32f0ec92c6babb4b93de612.tar.gz
Initial files
Diffstat (limited to 'src/CodeParser/CodeParser.ts')
-rw-r--r--src/CodeParser/CodeParser.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/CodeParser/CodeParser.ts b/src/CodeParser/CodeParser.ts
new file mode 100644
index 0000000..5d0d0bf
--- /dev/null
+++ b/src/CodeParser/CodeParser.ts
@@ -0,0 +1,10 @@
+import { Position, TextDocumentContentChangeEvent, TextEditor } from "vscode";
+
+export default interface ICodeParser {
+
+ /**
+ * @param {TextEditor} activeEditor The open active Editor where the event came from
+ * @param {TextDocumentContentChangeEvent} event Something in the document changed
+ */
+ Parse(activeEditor: TextEditor, event: TextDocumentContentChangeEvent);
+}