UNPKG

@ckeditor/ckeditor5-ai

Version:

AI features for CKEditor 5.

32 lines (31 loc) 819 B
/** * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module ai/aireviewmode/aireviewmodecontroller */ import { ContextPlugin } from 'ckeditor5/src/core.js'; import { AIConnector } from '../aicore/aiconnector.js'; export declare class AIReviewModeController extends ContextPlugin { /** * @inheritDoc */ static get requires(): readonly [typeof AIConnector]; /** * @inheritDoc */ static get pluginName(): "AIReviewModeController"; /** * @inheritDoc */ static get isOfficialPlugin(): true; /** * @inheritDoc */ static get isPremiumPlugin(): true; /** * @inheritDoc */ init(): Promise<void>; }