UNPKG

@ckeditor/ckeditor5-core

Version:

The core architecture of CKEditor 5 – the best browser-based rich text editor.

17 lines (16 loc) 672 B
/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module core/editor/utils/registerandinitializerootconfigattributes */ import type { Editor } from '../editor.js'; /** * Registers and initializes root attributes from * {@link module:core/editor/editorconfig~EditorConfig#roots `config.roots.<rootName>.modelAttributes`} * and {@link module:core/editor/editorconfig~EditorConfig#roots `config.root.modelAttributes`}. * * @internal */ export declare function registerAndInitializeRootConfigAttributes(editor: Editor): void;