UNPKG

830 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/blockquoteediting
7 */
8import { Plugin } from 'ckeditor5/src/core.js';
9import { Enter } from 'ckeditor5/src/enter.js';
10import { Delete } from 'ckeditor5/src/typing.js';
11/**
12 * The block quote editing.
13 *
14 * Introduces the `'blockQuote'` command and the `'blockQuote'` model element.
15 *
16 * @extends module:core/plugin~Plugin
17 */
18export default class BlockQuoteEditing extends Plugin {
19 /**
20 * @inheritDoc
21 */
22 static get pluginName(): "BlockQuoteEditing";
23 /**
24 * @inheritDoc
25 */
26 static get requires(): readonly [typeof Enter, typeof Delete];
27 /**
28 * @inheritDoc
29 */
30 init(): void;
31}