mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
|
|
/**
|
|
* InsertHtml Plugin.
|
|
*
|
|
*/
|
|
export default class InsertHtml extends Plugin {
|
|
static get pluginName(): string;
|
|
init(): void;
|
|
}
|