mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-19 07:12:26 +02:00
14 lines
423 B
TypeScript
14 lines
423 B
TypeScript
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
import { ClassicEditor } from "@ckeditor/ckeditor5-editor-classic";
|
|
export default class Disabler extends Plugin {
|
|
static get pluginName(): string;
|
|
init(): void;
|
|
/**
|
|
* Process ckeditor disabling.
|
|
*
|
|
* @param oEditor
|
|
* @param oInputElement
|
|
*/
|
|
static processDisabling(oEditor: ClassicEditor, oInputElement: HTMLInputElement): void;
|
|
}
|