// Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. import { IInstanceTracker } from '@jupyterlab/apputils'; import { IDocumentWidget } from '@jupyterlab/docregistry'; import { Token } from '@phosphor/coreutils'; import { FileEditor } from './widget'; import '../style/index.css'; export * from './widget'; /** * A class that tracks editor widgets. */ export interface IEditorTracker extends IInstanceTracker> {} /* tslint:disable */ /** * The editor tracker token. */ export const IEditorTracker = new Token('@jupyterlab/fileeditor:IEditorTracker'); /* tslint:enable */