mirror of
https://github.com/zadam/trilium.git
synced 2025-11-11 15:55:52 +01:00
24 lines
558 B
TypeScript
24 lines
558 B
TypeScript
|
|
/**
|
||
|
|
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
||
|
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
||
|
|
*/
|
||
|
|
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|