blob: 5d0d0bf6ec3c6c805a2a37ece71c4322d095c95e (
plain)
1
2
3
4
5
6
7
8
9
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);
}
|