UNPKG

@ckeditor/ckeditor5-block-quote

Version:

Block quote feature for CKEditor 5.

35 lines (34 loc) 1.1 kB
/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module block-quote/blockquote */ import { Plugin } from '@ckeditor/ckeditor5-core'; import { BlockQuoteEditing } from './blockquoteediting.js'; import { BlockQuoteUI } from './blockquoteui.js'; /** * The block quote plugin. * * For more information about this feature check the {@glink api/block-quote package page}. * * This is a "glue" plugin which loads the {@link module:block-quote/blockquoteediting~BlockQuoteEditing block quote editing feature} * and {@link module:block-quote/blockquoteui~BlockQuoteUI block quote UI feature}. * * @extends module:core/plugin~Plugin */ export declare class BlockQuote extends Plugin { /** * @inheritDoc */ static get requires(): readonly [typeof BlockQuoteEditing, typeof BlockQuoteUI]; /** * @inheritDoc */ static get pluginName(): "BlockQuote"; /** * @inheritDoc */ static get isOfficialPlugin(): true; }