@ckeditor/ckeditor5-block-quote
Version:
Block quote feature for CKEditor 5.
16 lines (15 loc) • 587 B
TypeScript
/**
* @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
*/
import type { BlockQuote, BlockQuoteCommand, BlockQuoteEditing, BlockQuoteUI } from './index.js';
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[BlockQuote.pluginName]: BlockQuote;
[BlockQuoteEditing.pluginName]: BlockQuoteEditing;
[BlockQuoteUI.pluginName]: BlockQuoteUI;
}
interface CommandsMap {
blockQuote: BlockQuoteCommand;
}
}