mirror of
https://github.com/zadam/trilium.git
synced 2025-11-20 07:34:25 +01:00
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;
|
|
}
|
|
}
|