index.ts 710 B

123456789101112131415161718192021222324252627
  1. // Copyright (c) Jupyter Development Team.
  2. // Distributed under the terms of the Modified BSD License.
  3. import { IInstanceTracker, MainAreaWidget } from '@jupyterlab/apputils';
  4. import { Token } from '@phosphor/coreutils';
  5. import { SettingEditor } from './settingeditor';
  6. import '../style/settingeditor.css';
  7. export * from './settingeditor';
  8. /* tslint:disable */
  9. /**
  10. * The setting editor tracker token.
  11. */
  12. export const ISettingEditorTracker = new Token<ISettingEditorTracker>(
  13. '@jupyterlab/settingeditor:ISettingEditorTracker'
  14. );
  15. /* tslint:enable */
  16. /**
  17. * A class that tracks the setting editor.
  18. */
  19. export interface ISettingEditorTracker
  20. extends IInstanceTracker<MainAreaWidget<SettingEditor>> {}