UNPKG

@ckeditor/ckeditor5-ai

Version:

AI features for CKEditor 5.

31 lines (30 loc) 864 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/aireviewcheckdefinitions */ /** * List of definitions of available review checks that can be performed in the AI Review Mode. */ export declare const AI_REVIEW_CHECKS: Array<AIReviewCheckDefinition>; export type AIReviewCheckOptionData = { label: string; id: string; }; export type AIReviewCheckOptions = { formType: string; label?: string; default?: string; data?: Array<AIReviewCheckOptionData>; argsKey?: string; }; export type AIReviewCheckDefinition = { id: string; title: string; description: string; isParameterized: boolean; useArgs?: boolean; options?: Array<AIReviewCheckOptions>; };