@ckeditor/ckeditor5-track-changes
Version:
CKEditor 5 track changes plugin.
27 lines (26 loc) • 977 B
TypeScript
/**
* @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/tablecolumnresize
*/
import { Plugin } from '@ckeditor/ckeditor5-core';
import type { ModelElement } from '@ckeditor/ckeditor5-engine';
import { type Suggestion } from '../suggestion.js';
import type { SuggestionDescription } from '../suggestiondescriptionfactory.js';
/**
* Provides track changes plugin integration for table column resize feature.
*/
export declare class TrackChangesTableColumnResize extends Plugin {
/**
* @inheritDoc
*/
afterInit(): void;
handleResizeTableWidthCommand(executeCommand: Function, options: {
table?: ModelElement;
tableWidth?: string;
columnWidths?: string;
}): void;
handleSuggestionDescription(suggestion: Suggestion): SuggestionDescription | undefined;
}