UNPKG

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