File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,7 @@ import {
32
32
33
33
import { Menu , MenuBar } from '@lumino/widgets' ;
34
34
35
- import { NotebookTreeWidget } from '@jupyter-notebook/tree' ;
36
- import { INotebookTree } from '@jupyter-notebook/tree' ;
35
+ import { NotebookTreeWidget , INotebookTree } from '@jupyter-notebook/tree' ;
37
36
38
37
/**
39
38
* The file browser factory.
Original file line number Diff line number Diff line change @@ -4,7 +4,13 @@ import { TabPanel } from '@lumino/widgets';
4
4
5
5
import { INotebookTree } from './token' ;
6
6
7
+ /**
8
+ * The widget added in main area of the tree view.
9
+ */
7
10
export class NotebookTreeWidget extends TabPanel implements INotebookTree {
11
+ /**
12
+ * Constructor of the NotebookTreeWidget.
13
+ */
8
14
constructor ( ) {
9
15
super ( {
10
16
tabPlacement : 'top' ,
Original file line number Diff line number Diff line change 1
1
import { Token } from '@lumino/coreutils' ;
2
2
import { TabPanel } from '@lumino/widgets' ;
3
3
4
+ /**
5
+ * The INotebookTree interface.
6
+ */
4
7
export interface INotebookTree extends TabPanel { }
5
8
6
9
/**
You can’t perform that action at this time.
0 commit comments