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