mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
|
|
/**
|
|
* IBOCompatibility Plugin.
|
|
*
|
|
* - exclude ck-reset_all for mention dropdown
|
|
* - appends ibo-is-html-content class
|
|
*/
|
|
export declare class IBOCompatibility extends Plugin {
|
|
static get pluginName(): string;
|
|
init(): Promise<unknown> | void | undefined | null;
|
|
}
|