/** * @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 real-time-collaboration/realtimecollaborativecomments * @publicApi */ import { Plugin } from '@ckeditor/ckeditor5-core'; import { CloudServicesCommentsAdapter } from './realtimecollaborativecomments/cloudservicescommentsadapter.js'; import { RealTimeCollaborativeEditing } from './realtimecollaborativeediting.js'; import { WebSocketGateway } from './realtimecollaborativeediting/websocketgateway.js'; import { Comments } from '@ckeditor/ckeditor5-comments'; /** * Enables the real-time collaborative comments feature. * * Check the {@glink features/collaboration/real-time-collaboration/real-time-collaboration-integration Real-time collaboration guide} * to see how to launch the editor in the real-time collaboration mode. */ export declare class RealTimeCollaborativeComments extends Plugin { /** * @inheritDoc */ static get requires(): readonly [typeof Comments, typeof CloudServicesCommentsAdapter, typeof RealTimeCollaborativeEditing, typeof WebSocketGateway]; /** * @inheritDoc */ static get pluginName(): "RealTimeCollaborativeComments"; /** * @inheritDoc */ static get isOfficialPlugin(): true; /** * @inheritDoc */ static get isPremiumPlugin(): true; /** * @inheritDoc */ init(): Promise; /** * @inheritDoc */ destroy(): void; }