File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,7 @@ import {
3232
3333import { Menu , MenuBar } from '@lumino/widgets' ;
3434
35- import { NotebookTreeWidget } from '@jupyter-notebook/tree' ;
36- import { INotebookTree } from '@jupyter-notebook/tree' ;
35+ import { NotebookTreeWidget , INotebookTree } from '@jupyter-notebook/tree' ;
3736
3837/**
3938 * The file browser factory.
Original file line number Diff line number Diff line change @@ -4,7 +4,13 @@ import { TabPanel } from '@lumino/widgets';
44
55import { INotebookTree } from './token' ;
66
7+ /**
8+ * The widget added in main area of the tree view.
9+ */
710export class NotebookTreeWidget extends TabPanel implements INotebookTree {
11+ /**
12+ * Constructor of the NotebookTreeWidget.
13+ */
814 constructor ( ) {
915 super ( {
1016 tabPlacement : 'top' ,
Original file line number Diff line number Diff line change 11import { Token } from '@lumino/coreutils' ;
22import { TabPanel } from '@lumino/widgets' ;
33
4+ /**
5+ * The INotebookTree interface.
6+ */
47export interface INotebookTree extends TabPanel { }
58
69/**
You can’t perform that action at this time.
0 commit comments