Skip to content

IInlineEdit

原文链接

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

ts
interface IInlineEdit {
    accepted?: Command;
    range: IRange;
    rejected?: Command;
    text: string;
}

accepted

range

rejected

text

  • 类型:string