123456789101112131415161718192021222324252627282930 |
- // Copyright (c) Jupyter Development Team.
- // Distributed under the terms of the Modified BSD License.
- import {
- Token
- } from '@phosphor/application';
- import {
- IInstanceTracker
- } from '../apputils';
- import {
- ConsolePanel
- } from './';
- /* tslint:disable */
- /**
- * The console tracker token.
- */
- export
- const IConsoleTracker = new Token<IConsoleTracker>('jupyter.services.consoles');
- /* tslint:enable */
- /**
- * A class that tracks console widgets.
- */
- export
- interface IConsoleTracker extends IInstanceTracker<ConsolePanel> {}
|