UNPKG

@jupyterlab/fileeditor

Version:
18 lines (17 loc) 569 B
import { IWidgetTracker } from '@jupyterlab/apputils'; import { IDocumentWidget } from '@jupyterlab/docregistry'; import { Token } from '@lumino/coreutils'; import { FileEditor, FileEditorFactory } from './widget'; /** * A class that tracks editor widgets. */ export interface IEditorTracker extends IWidgetTracker<IDocumentWidget<FileEditor>> { } /** * The editor tracker token. */ export declare const IEditorTracker: Token<IEditorTracker>; /** * The editor widget factory token. */ export declare const IEditorWidgetFactory: Token<FileEditorFactory.IFactory>;