You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monkeyking/packages/tree/src/token.ts

15 lines
315 B

import { Token } from '@lumino/coreutils';
import { TabPanel } from '@lumino/widgets';
/**
* The INotebookTree interface.
*/
export interface INotebookTree extends TabPanel {}
/**
* The INotebookTree token.
*/
export const INotebookTree = new Token<INotebookTree>(
'@jupyter-notebook/tree:INotebookTree'
);