UNPKG

@ckeditor/ckeditor5-comments

Version:

Collaborative comments feature for CKEditor 5.

32 lines (31 loc) 842 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 comments/comments/ui/commenteditor/commenteditorui */ import { EditorUI } from "@ckeditor/ckeditor5-ui"; import type { Editor } from "@ckeditor/ckeditor5-core"; import { CommentEditorUIView } from "./commenteditoruiview.js"; export declare class CommentEditorUI extends EditorUI { /** * The main (top–most) view of the editor UI. */ readonly view: CommentEditorUIView; /** * Creates an instance of the classic editor UI class. * * @param editor The editor instance. */ constructor(editor: Editor); /** * @inheritDoc */ override get element(): HTMLElement | null; init(): void; /** * @inheritDoc */ override destroy(): void; }