/*************************************************************************** * Copyright (c) 2018, VoilĂ  contributors * * Copyright (c) 2018, QuantStack * * * * Distributed under the terms of the BSD 3-Clause License. * * * * The full license is in the file LICENSE, distributed with this software. * ****************************************************************************/ import { JupyterFrontEndPlugin } from '@jupyterlab/application'; import { pathsPlugin } from './plugins/path'; import { translatorPlugin } from './plugins/translator'; import { renderOutputsPlugin } from './plugins/outputs'; import { themePlugin, themesManagerPlugin } from './plugins/themes'; import { renderOutputsProgressivelyPlugin } from './plugins/outputs/index'; /** * Export the plugins as default. */ declare const plugins: JupyterFrontEndPlugin[]; export default plugins; export { pathsPlugin, translatorPlugin, renderOutputsPlugin, renderOutputsProgressivelyPlugin, themesManagerPlugin, themePlugin };