File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
packages/jupyterlab-lsp/src Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { CodeEditor } from '@jupyterlab/codeeditor';
5
5
import { VirtualDocument } from '../virtual/document' ;
6
6
import { until_ready } from '../utils' ;
7
7
import { IRootPosition } from '../positioning' ;
8
- import { create_console , EditorLogConsole } from " ../virtual/console" ;
8
+ import { create_console , EditorLogConsole } from ' ../virtual/console' ;
9
9
10
10
export class EditorAdapter < T extends IVirtualEditor < IEditor > > {
11
11
features : Map < string , IFeatureEditorIntegration < T > > ;
Original file line number Diff line number Diff line change @@ -129,8 +129,17 @@ export interface ILSPAdapterManager {
129
129
}
130
130
131
131
export interface IVirtualEditorType < T extends IEditor > {
132
+ /**
133
+ * The constructor of the IVirtualEditor<T> instance.
134
+ */
132
135
implementation : IVirtualEditor . Constructor ;
136
+ /**
137
+ * The name of the editor T.
138
+ */
133
139
name : IEditorName ;
140
+ /**
141
+ * The implementation of and editor being supported.
142
+ */
134
143
supports : new ( ...args : any ) => T ;
135
144
}
136
145
You can’t perform that action at this time.
0 commit comments