summaryrefslogtreecommitdiffstats
path: root/src/Common/ICodeParser.ts
blob: afe29670c39076689f71f88fc8c9192e6b9203af (plain)
1
2
3
4
5
6
7
8
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;
}