1 |
|
2 |
|
3 |
|
4 |
|
5 | import type { LinkConfig, AutoLink, Link, LinkEditing, LinkImage, LinkImageEditing, LinkImageUI, LinkUI, LinkCommand, UnlinkCommand } from './index';
|
6 | declare module '@ckeditor/ckeditor5-core' {
|
7 | interface EditorConfig {
|
8 | |
9 |
|
10 |
|
11 |
|
12 |
|
13 | link?: LinkConfig;
|
14 | }
|
15 | interface PluginsMap {
|
16 | [AutoLink.pluginName]: AutoLink;
|
17 | [Link.pluginName]: Link;
|
18 | [LinkEditing.pluginName]: LinkEditing;
|
19 | [LinkImage.pluginName]: LinkImage;
|
20 | [LinkImageEditing.pluginName]: LinkImageEditing;
|
21 | [LinkImageUI.pluginName]: LinkImageUI;
|
22 | [LinkUI.pluginName]: LinkUI;
|
23 | }
|
24 | interface CommandsMap {
|
25 | link: LinkCommand;
|
26 | }
|
27 | interface CommandsMap {
|
28 | unlink: UnlinkCommand;
|
29 | }
|
30 | }
|