@ckeditor/ckeditor5-real-time-collaboration
Version:
A set of CKEditor 5 features enabling real-time collaboration within the editor using CKEditor Cloud Services.
37 lines (36 loc) • 1.38 kB
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 real-time-collaboration/realtimecollaborativetrackchanges
* @publicApi
*/
import { Plugin } from '@ckeditor/ckeditor5-core';
import { TrackChanges } from '@ckeditor/ckeditor5-track-changes';
import { CloudServicesTrackChangesAdapter } from './realtimecollaborativetrackchanges/cloudservicestrackchangesadapter.js';
import { RealTimeCollaborativeComments } from './realtimecollaborativecomments.js';
/**
* Enables the real-time collaborative track changes 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 RealTimeCollaborativeTrackChanges extends Plugin {
/**
* @inheritDoc
*/
static get requires(): readonly [typeof RealTimeCollaborativeComments, typeof CloudServicesTrackChangesAdapter, typeof TrackChanges];
/**
* @inheritDoc
*/
static get pluginName(): "RealTimeCollaborativeTrackChanges";
/**
* @inheritDoc
*/
static get isOfficialPlugin(): true;
/**
* @inheritDoc
*/
static get isPremiumPlugin(): true;
}