@ckeditor/ckeditor5-ai
Version:
AI features for CKEditor 5.
33 lines (32 loc) • 1.06 kB
TypeScript
/**
* @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
*/
import { AIReviewCheck } from './aireviewcheck.js';
import { type AIReviewCheckDefinition } from '../aireviewcheckdefinitions.js';
declare const AIReviewCheckList_base: {
new (): import("ckeditor5/src/utils.js").Observable;
prototype: import("ckeditor5/src/utils.js").Observable;
};
/**
* Represents the list of review checks that can be performed in the AI Review Mode.
*/
export declare class AIReviewCheckList extends /* #__PURE__ */ AIReviewCheckList_base {
/**
* @inheritDoc
*/
constructor(checks: Array<AIReviewCheckDefinition>);
/**
* The list of available review checks.
*/
get checks(): Array<AIReviewCheck>;
/**
* Returns the check by its ID.
*/
getCheckById(id: string): AIReviewCheck | undefined;
/**
* Removes the check by its ID.
*/
removeCheckById(id: string): void;
}
export {};