This commit is contained in:
Jiiks 2018-02-14 00:15:46 +02:00
parent fca1d49506
commit 44832fb11a
2 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,7 @@
* LICENSE file in the root directory of this source tree.
*/
export class ExtModule {
export default class ExtModule {
constructor(pluginInternals) {
this.__pluginInternals = pluginInternals;

View File

@ -1,6 +1,7 @@
export { default as Events } from './events';
export { default as Settings } from './settings';
export { default as CssEditor } from './csseditor';
export { default as ExtModuleManager } from './extmodulemanager';
export { default as PluginManager } from './pluginmanager';
export { default as ThemeManager } from './thememanager';
export { default as Globals } from './globals';