import { Plugin } from 'ckeditor5/src/core'; import { Widget } from 'ckeditor5/src/widget'; import MathliveUI from './mathliveui'; import MathliveEditing from './mathliveediting'; export default class Mathlive extends Plugin { static get requires(): readonly [typeof MathliveEditing, typeof MathliveUI, typeof Widget]; static get pluginName(): "Mathlive"; }