UNPKG

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