From a33d4634198f0af08ef92e0ff9e713b28ce7e1fa Mon Sep 17 00:00:00 2001 From: Filip Sobol Date: Wed, 19 Apr 2023 12:24:35 +0200 Subject: [PATCH] Fix (core): Add `licenseKey` property to `EditorConfig` interface --- packages/ckeditor5-core/src/editor/editorconfig.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/ckeditor5-core/src/editor/editorconfig.ts b/packages/ckeditor5-core/src/editor/editorconfig.ts index 77d913e3259..5b3e0d40154 100644 --- a/packages/ckeditor5-core/src/editor/editorconfig.ts +++ b/packages/ckeditor5-core/src/editor/editorconfig.ts @@ -488,6 +488,14 @@ export interface EditorConfig { * {@glink features/html/html-embed HTML embed} features. */ updateSourceElementOnDestroy?: boolean; + + /** + * The license key for the CKEditor 5 premium features. + * + * If you do not have a key yet, please [contact us](https://ckeditor.com/contact/) or + * [order a trial](https://orders.ckeditor.com/trial/premium-features). + */ + licenseKey?: string; } /**