Add some docstring

Nicolas Brichet 4 years ago
parent 5d6fdef55e
commit 5a77a22207

@ -32,8 +32,7 @@ import {
import { Menu, MenuBar } from '@lumino/widgets';
import { NotebookTreeWidget } from '@jupyter-notebook/tree';
import { INotebookTree } from '@jupyter-notebook/tree';
import { NotebookTreeWidget, INotebookTree } from '@jupyter-notebook/tree';
/**
* The file browser factory.

@ -4,7 +4,13 @@ import { TabPanel } from '@lumino/widgets';
import { INotebookTree } from './token';
/**
* The widget added in main area of the tree view.
*/
export class NotebookTreeWidget extends TabPanel implements INotebookTree {
/**
* Constructor of the NotebookTreeWidget.
*/
constructor() {
super({
tabPlacement: 'top',

@ -1,6 +1,9 @@
import { Token } from '@lumino/coreutils';
import { TabPanel } from '@lumino/widgets';
/**
* The INotebookTree interface.
*/
export interface INotebookTree extends TabPanel {}
/**

Loading…
Cancel
Save