mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-28 21:18:46 +02:00
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
/**
|
|
* InsertHtml Plugin.
|
|
*
|
|
*/
|
|
export default class InsertHtml extends Plugin {
|
|
static get pluginName(): string;
|
|
init(): void;
|
|
}
|