UNPKG

@ckeditor/ckeditor5-track-changes

Version:

CKEditor 5 track changes plugin.

23 lines (22 loc) 696 B
/** * @license Copyright (c) 2003-2025, 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/tablemergesplit */ import { Plugin } from 'ckeditor5/src/core.js'; import TrackChangesTable from './table.js'; /** * Provides track changes plugin integration for {@link module:table/table~Table table feature} merging and splitting cells. */ export default class TrackChangesTableMergeSplit extends Plugin { /** * @inheritDoc */ static get requires(): readonly [typeof TrackChangesTable]; /** * @inheritDoc */ afterInit(): void; }