UNPKG

@ckeditor/ckeditor5-ai

Version:

AI features for CKEditor 5.

17 lines (16 loc) 609 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/aireviewcheckcustom */ import { AIReviewCheck } from './aireviewcheck.js'; import { type AIModelData } from '../../aicore/aiconnector.js'; /** * Represents the single type of custom check that can be performed in the AI Review Mode. */ export declare class AIReviewCheckCustom extends AIReviewCheck { get models(): Array<AIModelData>; set models(models: Array<AIModelData>); }