Interface TextEditorAddData

interface TextEditorAddData {
    documentUri: UriComponents;
    editorPosition?: EditorPosition;
    id: string;
    options: TextEditorConfiguration;
    selections: Selection[];
    visibleRanges: Range[];
}

Properties

documentUri: UriComponents
editorPosition?: EditorPosition
id: string
selections: Selection[]
visibleRanges: Range[]