mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
13 lines
333 B
TypeScript
13 lines
333 B
TypeScript
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
|
|
/**
|
|
* EditorFeatures Plugin.
|
|
*
|
|
* - trigger update event when editor is ready
|
|
* - dispatch submit event on the closest editor form when Ctrl+Enter pressed
|
|
*
|
|
*/
|
|
export declare class EditorFeatures extends Plugin {
|
|
static get pluginName(): string;
|
|
init(): void;
|
|
}
|