@ckeditor/ckeditor5-ai
Version:
AI features for CKEditor 5.
16 lines (15 loc) • 615 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
*/
import { AIReviewCheckList } from '../../aireviewcore/model/aireviewchecklist.js';
import { type AIReviewCheckBaseDefinition } from '../../aireviewcore/types.js';
/**
* Represents the list of translate checks that can be performed in the AI Translate.
*/
export declare class AITranslateCheckList extends AIReviewCheckList {
/**
* @inheritDoc
*/
setupChecks(checks: Array<AIReviewCheckBaseDefinition>): void;
}