UNPKG

558 BTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5/**
6* @module table/tablecaption/tablecaptionui
7*/
8import { Plugin } from 'ckeditor5/src/core';
9/**
10 * The table caption UI plugin. It introduces the `'toggleTableCaption'` UI button.
11 */
12export default class TableCaptionUI extends Plugin {
13 /**
14 * @inheritDoc
15 */
16 static get pluginName(): 'TableCaptionUI';
17 /**
18 * @inheritDoc
19 */
20 init(): void;
21}