UNPKG

@ckeditor/ckeditor5-ai

Version:

AI features for CKEditor 5.

22 lines (21 loc) 830 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/model/aireviewcustomcheckrun */ import { AIReviewCheckRun } from './aireviewcheckrun.js'; import { type AIConnector } from '../../aicore/aiconnector.js'; import { type AIDocumentData } from '../aireviewmodeediting.js'; import { type AIReviewCheck } from './aireviewcheck.js'; /** * Represents a single custom review check run and its results. */ export declare class AIReviewCustomCheckRun extends AIReviewCheckRun { constructor(prompt: string, model: string, documentData: AIDocumentData, sourceCheck: AIReviewCheck, connector: AIConnector); /** * @inheritDoc */ get subTitle(): string; }