summaryrefslogtreecommitdiffstats
path: root/src/CodeParser/CodeParser.ts
blob: cc2c709fa0be5704623e845bf821af15f8a169ae (plain)
1
2
3
4
5
6
7
8
9
import { Position, TextDocumentContentChangeEvent, TextEditor } from "vscode";

export default interface ICodeParser {

    /**
     * @param  {TextEditor} activeEditor The open active Editor where the event came from
     */
    Parse(activeEditor: TextEditor);
}