Skip to content

TextEdit

原文链接

https://microsoft.github.io/monaco-editor/docs.html#interfaces/languages.TextEdit.html

ts
interface TextEdit {
    eol?: EndOfLineSequence;
    range: IRange;
    text: string;
}

eol

range

text

  • 类型:string