mirror of
https://github.com/zadam/trilium.git
synced 2025-11-11 15:55:52 +01:00
git-subtree-dir: _regroup/ckeditor5-math git-subtree-mainline:034cd58833git-subtree-split:6231df7f0e
17 lines
406 B
TypeScript
17 lines
406 B
TypeScript
import { Plugin } from 'ckeditor5/src/core';
|
|
import { Widget } from 'ckeditor5/src/widget';
|
|
|
|
import MathUI from './mathui';
|
|
import MathEditing from './mathediting';
|
|
import AutoMath from './automath';
|
|
|
|
export default class Math extends Plugin {
|
|
public static get requires() {
|
|
return [ MathEditing, MathUI, AutoMath, Widget ] as const;
|
|
}
|
|
|
|
public static get pluginName() {
|
|
return 'Math' as const;
|
|
}
|
|
}
|