ckeditor_mentions-8.x-2.x-dev/js/ckeditor5_plugins/drupalMention/src/index.js
js/ckeditor5_plugins/drupalMention/src/index.js
/**
* @file The build process always expects an index.js file. Anything exported
* here will be recognized by CKEditor 5 as an available plugin. Multiple
* plugins can be exported in this one file.
*
* I.e. this file's purpose is to make plugin(s) discoverable.
*/
// cSpell:ignore simplebox
import DrupalMention from './drupalMention';
import MentionsAjax from './mentionsAjax'
export default {
DrupalMention,
MentionsAjax,
};
