mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 11:08:45 +02:00
11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import { Plugin, type Editor } from 'ckeditor5/src/core.js';
|
|
/**
|
|
* DetectChanges Plugin.
|
|
*
|
|
*/
|
|
export default class DetectChanges extends Plugin {
|
|
constructor(editor: Editor);
|
|
init(): void;
|
|
static get pluginName(): string;
|
|
}
|