1 |
|
2 |
|
3 |
|
4 |
|
5 | import type { MediaEmbedConfig, AutoMediaEmbed, MediaEmbed, MediaEmbedEditing, MediaEmbedToolbar, MediaEmbedUI, MediaEmbedCommand } from './index';
|
6 | declare module '@ckeditor/ckeditor5-core' {
|
7 | interface EditorConfig {
|
8 | |
9 |
|
10 |
|
11 |
|
12 |
|
13 | mediaEmbed?: MediaEmbedConfig;
|
14 | }
|
15 | interface PluginsMap {
|
16 | [AutoMediaEmbed.pluginName]: AutoMediaEmbed;
|
17 | [MediaEmbed.pluginName]: MediaEmbed;
|
18 | [MediaEmbedEditing.pluginName]: MediaEmbedEditing;
|
19 | [MediaEmbedToolbar.pluginName]: MediaEmbedToolbar;
|
20 | [MediaEmbedUI.pluginName]: MediaEmbedUI;
|
21 | }
|
22 | interface CommandsMap {
|
23 | mediaEmbed: MediaEmbedCommand;
|
24 | }
|
25 | }
|