import { JupyterFrontEndPlugin } from '@jupyterlab/application'; /** * Every plugin contributed by `xtralab`. The entry point of the * labextension is an array because the package bundles several independent * enhancements (file browser, git diff providers, …) — JupyterLab activates * each plugin individually and only the ones whose required tokens are * available end up running. `gitPlugins` and `launcherPlugins` are themselves * arrays (the git diff providers; the launcher plus its editor registry), so * they are spread in. */ declare const plugins: JupyterFrontEndPlugin[]; export default plugins;