index.d.ts 347 B

123456789
  1. import { JupyterFrontEndPlugin } from '@jupyterlab/application';
  2. import { LabIcon } from '@jupyterlab/ui-components';
  3. import '../style/index.css';
  4. export declare const spellcheckIcon: LabIcon;
  5. /**
  6. * Initialization data for the jupyterlab_spellchecker extension.
  7. */
  8. declare const extension: JupyterFrontEndPlugin<void>;
  9. export default extension;