UNPKG

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