UNPKG

870 BJavaScriptView Raw
1// Copyright (c) Jupyter Development Team.
2// Distributed under the terms of the Modified BSD License.
3import { Token } from '@lumino/coreutils';
4/**
5 * The notebook widget factory token.
6 */
7export const INotebookWidgetFactory = new Token('@jupyterlab/notebook:INotebookWidgetFactory', 'A service to create the notebook viewer.');
8/**
9 * The notebook tools token.
10 */
11export const INotebookTools = new Token('@jupyterlab/notebook:INotebookTools', `A service for the "Notebook Tools" panel in the
12 right sidebar. Use this to add your own functionality to the panel.`);
13/**
14 * The notebook tracker token.
15 */
16export const INotebookTracker = new Token('@jupyterlab/notebook:INotebookTracker', `A widget tracker for notebooks.
17 Use this if you want to be able to iterate over and interact with notebooks
18 created by the application.`);
19//# sourceMappingURL=tokens.js.map
\No newline at end of file