Files
Trilium/_regroup/ckeditor5-math/src/math.ts

17 lines
406 B
TypeScript
Raw Normal View History

2024-03-14 21:33:24 -03:00
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;
}
}