mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +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;
|
|
}
|