@ckeditor/ckeditor5-ai
Version:
AI features for CKEditor 5.
40 lines (39 loc) • 1.17 kB
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
*/
declare const AIReviewCheckResult_base: {
new (): import("ckeditor5/src/utils.js").Emitter;
prototype: import("ckeditor5/src/utils.js").Emitter;
};
/**
* Represents a single change of the document that is a result of an review check run.
*/
export declare class AIReviewCheckResult extends /* #__PURE__ */ AIReviewCheckResult_base {
/**
* The id of the change.
*/
readonly id: string;
/**
* The content of the change.
*/
readonly contentNew: string;
/**
* The initial content of the change.
*/
readonly contentInitial: string;
/**
* The document version for which this result was created.
*/
readonly documentVersion: number;
/**
* Creates a new instance of the AIReviewCheckResult.
*/
constructor({ id, contentNew, contentInitial, documentVersion }: {
id: string;
contentNew: string;
contentInitial: string;
documentVersion: number;
});
}
export {};