1 |
|
2 |
|
3 | import { Token } from '@lumino/coreutils';
|
4 |
|
5 |
|
6 |
|
7 | export const IDocumentManager = new Token('@jupyterlab/docmanager:IDocumentManager', `A service for the manager for all
|
8 | documents used by the application. Use this if you want to open and close documents,
|
9 | create and delete files, and otherwise interact with the file system.`);
|
10 |
|
11 |
|
12 |
|
13 | export const IDocumentWidgetOpener = new Token('@jupyterlab/docmanager:IDocumentWidgetOpener', `A service to open a widget.`);
|
14 |
|
15 |
|
16 |
|
17 | export const IRecentsManager = new Token('@jupyterlab/docmanager:IRecentsManager', `A service providing information about recently opened and closed documents`);
|
18 |
|
\ | No newline at end of file |