Files
Trilium/packages/ckeditor5-admonition/src/augmentation.ts

24 lines
558 B
TypeScript
Raw Normal View History

/**
* @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;
}
}