UNPKG

1.01 kBTypeScriptView 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/blockquote
7 */
8import { Plugin } from 'ckeditor5/src/core.js';
9import BlockQuoteEditing from './blockquoteediting.js';
10import BlockQuoteUI from './blockquoteui.js';
11/**
12 * The block quote plugin.
13 *
14 * For more information about this feature check the {@glink api/block-quote package page}.
15 *
16 * This is a "glue" plugin which loads the {@link module:block-quote/blockquoteediting~BlockQuoteEditing block quote editing feature}
17 * and {@link module:block-quote/blockquoteui~BlockQuoteUI block quote UI feature}.
18 *
19 * @extends module:core/plugin~Plugin
20 */
21export default class BlockQuote extends Plugin {
22 /**
23 * @inheritDoc
24 */
25 static get requires(): readonly [typeof BlockQuoteEditing, typeof BlockQuoteUI];
26 /**
27 * @inheritDoc
28 */
29 static get pluginName(): "BlockQuote";
30}