@ckeditor/ckeditor5-ai
Version:
AI features for CKEditor 5.
22 lines (21 loc) • 579 B
TypeScript
/**
* @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/aireviewsystemcheckrun
*/
import { AIReviewCheckRun } from './aireviewcheckrun.js';
/**
* Represents a single system review check run and its results.
*/
export declare class AIReviewSystemCheckRun extends AIReviewCheckRun {
/**
* @inheritDoc
*/
get subTitle(): string;
/**
* @inheritDoc
*/
get reviewName(): string;
}