UNPKG

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