mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
14 lines
468 B
TypeScript
14 lines
468 B
TypeScript
import { Plugin, type Editor } from 'ckeditor5/src/core.js';
|
|
import InsertCarriageReturnAfterBlock from "../insert-carriage-return-after-block/insert-carriage-return-after-block.plugin";
|
|
/**
|
|
* DetectChanges Plugin.
|
|
*
|
|
*/
|
|
export default class DetectChanges extends Plugin {
|
|
private readonly _processor;
|
|
constructor(editor: Editor);
|
|
init(): void;
|
|
static get pluginName(): string;
|
|
static get requires(): (typeof InsertCarriageReturnAfterBlock)[];
|
|
}
|