mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-17 06:54:21 +01:00
12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
import { Plugin, type Editor } from 'ckeditor5/src/core.js';
|
|
/**
|
|
* DetectChanges Plugin.
|
|
*
|
|
*/
|
|
export default class DetectChanges extends Plugin {
|
|
private readonly _processor;
|
|
constructor(editor: Editor);
|
|
init(): void;
|
|
static get pluginName(): string;
|
|
}
|