/** * The multi-root editor UI view. It is a virtual view providing an inline editable, but without * any specific arrangement of the components in the DOM. */ export default class MultirootEditorUIView extends EditorUIView { /** * Creates an instance of the multi-root editor UI view. * * @param {module:utils/locale~Locale} locale The {@link module:core/editor/editor~Editor#locale} instance. * @param {module:engine/view/view~View} editingView The editing view instance this view is related to. * @param {Object.} editableElements The list of editable elements, containing name and html element * for each editable. */ constructor(locale: any, editingView: any, editableElements: any); locale: any; editingView: any; /** * The main toolbar of the multi-root editor UI. * * @readonly * @member {module:ui/toolbar/toolbarview~ToolbarView} */ readonly toolbar: ToolbarView; /** * The editables of the multi-root editor UI. * * @readonly * @member {Array.} */ readonly editables: any[]; createEditableUIView(rootName: any, sourceElement: any): InlineEditableUIView; getEditable(rootName: any): any; removeEditable(rootName: any): void; } import { EditorUIView } from "@ckeditor/ckeditor5-ui"; import { ToolbarView } from "@ckeditor/ckeditor5-ui"; import { InlineEditableUIView } from "@ckeditor/ckeditor5-ui"; //# sourceMappingURL=multiroot-editor-ui-view.d.ts.map