UNPKG

404 BTypeScriptView Raw
1import { Plugin } from '@ckeditor/ckeditor5-core';
2/**
3 * The table caption UI plugin. It introduces the `'toggleTableCaption'` UI button.
4 */
5export default class TableCaptionUI extends Plugin {
6 static readonly pluginName: 'TableCaptionUI';
7 init(): void;
8}
9
10declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
11 interface Plugins {
12 TableCaptionUI: TableCaptionUI;
13 }
14}