@ckeditor/ckeditor5-comments
Version:
Collaborative comments feature for CKEditor 5.
27 lines (26 loc) • 763 B
TypeScript
/**
* @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/integrations/clipboard
*/
import { Plugin, type Editor, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
import { ClipboardPipeline, ClipboardMarkersUtils } from "@ckeditor/ckeditor5-clipboard";
/**
* Provides comments plugin integration for the clipboard feature.
*/
export declare class CommentsClipboard extends Plugin {
/**
* @inheritDoc
*/
constructor(editor: Editor);
/**
* @inheritDoc
*/
static get requires(): PluginDependenciesOf<[ClipboardMarkersUtils, ClipboardPipeline]>;
/**
* @inheritDoc
*/
afterInit(): void;
}