-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathaugmentation.ts
More file actions
24 lines (20 loc) · 804 Bytes
/
augmentation.ts
File metadata and controls
24 lines (20 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
import type { EmailIntegrationConfig } from './emailintegrationconfig.js';
import type { EmailIntegration, EmailIntegrationUtils } from './index.js';
declare module '@ckeditor/ckeditor5-core' {
interface EditorConfig {
/**
* The configuration of the {@link module:email/emailintegration~EmailIntegration EmailIntegration feature}.
*
* Read more in {@link module:email/emailintegrationconfig~EmailIntegrationConfig}.
*/
email?: EmailIntegrationConfig;
}
interface PluginsMap {
[ EmailIntegration.pluginName ]: EmailIntegration;
[ EmailIntegrationUtils.pluginName ]: EmailIntegrationUtils;
}
}