Skip to content

IMouseTargetTextarea

原文链接

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

ts
interface IMouseTargetTextarea {
    element: HTMLElement;
    mouseColumn: number;
    position: null;
    range: null;
    type: TEXTAREA;
}

element

  • 类型: HTMLElement

mouseColumn

  • 类型: number

position

  • 类型: null

range

  • 类型: null

type