@types/ckeditor__ckeditor5-table
Version:
TypeScript definitions for @ckeditor/ckeditor5-table
16 lines (13 loc) • 469 B
TypeScript
import { Plugin } from '@ckeditor/ckeditor5-core';
import TableSelection from './tableselection';
import TableUtils from './tableutils';
export default class TableKeyboard extends Plugin {
static readonly pluginName: 'TableKeyboard';
static readonly requires: [typeof TableSelection, typeof TableUtils];
init(): void;
}
declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
interface Plugins {
TableKeyboard: TableKeyboard;
}
}