UNPKG

@ckeditor/ckeditor5-track-changes

Version:

CKEditor 5 track changes plugin.

17 lines (16 loc) 619 B
/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module track-changes/integrations/entercommand */ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core"; import { Enter } from "@ckeditor/ckeditor5-enter"; /** * Provides track changes plugin integration for {@link module:enter/entercommand~EnterCommand enter command}. */ export declare class TrackChangesEnterCommand extends Plugin { static get requires(): PluginDependenciesOf<[Enter]>; init(): void; }