UNPKG

884 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 document registry token.
6 */
7export 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 * The document widget opener token.
12 */
13export const IDocumentWidgetOpener = new Token('@jupyterlab/docmanager:IDocumentWidgetOpener', `A service to open a widget.`);
14/**
15 * The recent documents database token.
16 */
17export const IRecentsManager = new Token('@jupyterlab/docmanager:IRecentsManager', `A service providing information about recently opened and closed documents`);
18//# sourceMappingURL=tokens.js.map
\No newline at end of file