@ckeditor/ckeditor5-integrations-common
Version:
This package implements common utility modules for integration projects.
19 lines (18 loc) • 601 B
TypeScript
// @ts-nocheck
/**
* @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 * as CKEditorPremiumFeatures from 'ckeditor5-premium-features';
import type * as CKEditor from 'ckeditor5';
/**
* Exported global variables of the CKEditor and CKEditor Premium Features.
*/
declare global {
interface Window {
CKEDITOR_VERSION?: string;
CKEDITOR?: typeof CKEditor;
CKEDITOR_PREMIUM_FEATURES?: typeof CKEditorPremiumFeatures;
}
}
export {};