UNPKG

458 BTypeScriptView Raw
1import { Plugin } from '@ckeditor/ckeditor5-core';
2import TableEditing from '../tableediting';
3
4export default class TableCellPropertiesEditing extends Plugin {
5 static readonly pluginName: 'TableCellPropertiesEditing';
6 static readonly requires: [typeof TableEditing];
7 init(): void;
8}
9
10declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
11 interface Plugins {
12 TableCellPropertiesEditing: TableCellPropertiesEditing;
13 }
14}