UNPKG

748 BTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2024, 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 block-quote/blockquoteui
7 */
8import { Plugin } from 'ckeditor5/src/core.js';
9import '../theme/blockquote.css';
10/**
11 * The block quote UI plugin.
12 *
13 * It introduces the `'blockQuote'` button.
14 *
15 * @extends module:core/plugin~Plugin
16 */
17export default class BlockQuoteUI extends Plugin {
18 /**
19 * @inheritDoc
20 */
21 static get pluginName(): "BlockQuoteUI";
22 /**
23 * @inheritDoc
24 */
25 init(): void;
26 /**
27 * Creates a button for block quote command to use either in toolbar or in menu bar.
28 */
29 private _createButton;
30}