@ckeditor/ckeditor5-ai
Version:
AI features for CKEditor 5.
22 lines (21 loc) • 860 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 ai/aireviewmode/model/aireviewcheckcustom
*/
import { AIReviewCheck } from '../../aireviewcore/model/aireviewcheck.js';
import { type AIModelData } from '../../aicore/aiconnector.js';
import { type AIReviewCheckDefinition } from '../../aireviewcore/types.js';
/**
* Represents the predefined custom check that can be performed in the AI Review Mode.
*/
export declare class AIReviewCheckCustom extends AIReviewCheck {
/**
* @inheritDoc
*/
constructor(checkDefinition: AIReviewCheckDefinition, models: Array<AIModelData>, defaultModel: AIModelData | null);
get models(): Array<AIModelData>;
get defaultModel(): AIModelData | null;
}