UNPKG

@jupyterlab/docmanager

Version:
14 lines 674 B
// Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. import { Token } from '@lumino/coreutils'; /** * The document registry token. */ export const IDocumentManager = new Token('@jupyterlab/docmanager:IDocumentManager', `A service for the manager for all documents used by the application. Use this if you want to open and close documents, create and delete files, and otherwise interact with the file system.`); /** * The document widget opener token. */ export const IDocumentWidgetOpener = new Token('@jupyterlab/docmanager:IDocumentWidgetOpener', `A service to open a widget.`); //# sourceMappingURL=tokens.js.map