UNPKG

797 BTypeScriptView Raw
1/**
2 * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5import type { default as Editor } from '../editor.js';
6/**
7 * Marks the source element on which the editor was initialized. This prevents other editor instances from using this element.
8 *
9 * Running multiple editor instances on the same source element causes various issues and it is
10 * crucial this helper is called as soon as the source element is known to prevent collisions.
11 *
12 * @param editor Editor instance.
13 * @param sourceElement Element to bind with the editor instance.
14 */
15export default function secureSourceElement(editor: Editor, sourceElement: HTMLElement & {
16 ckeditorInstance?: Editor;
17}): void;