UNPKG

787 BTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5/**
6 * @module table/tablecellwidth/tablecellwidthediting
7 */
8import { Plugin } from 'ckeditor5/src/core';
9import TableEditing from './../tableediting';
10/**
11 * The table cell width editing feature.
12 *
13 * Introduces `tableCellWidth` table cell model attribute alongside with its converters
14 * and a command.
15 */
16export default class TableCellWidthEditing extends Plugin {
17 /**
18 * @inheritDoc
19 */
20 static get pluginName(): 'TableCellWidthEditing';
21 /**
22 * @inheritDoc
23 */
24 static get requires(): readonly [typeof TableEditing];
25 /**
26 * @inheritDoc
27 */
28 init(): void;
29}