/** * @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 */ /** * @module ai/aireviewcore/model/aichecksinglerootresult * @publicApi */ import { type AIRunChangeData } from "../../aicore/aigateway.js"; import { AIRunSingleRootResult } from "../../aicore/model/airunsinglerootresult.js"; /** * The result of a single AI check run, scoped to a single root. Adds `affectedBlocks` on top of * {@link module:ai/aicore/model/airunsinglerootresult~AIRunSingleRootResult}. */ export declare class AICheckRunSingleRootResult extends AIRunSingleRootResult { /** * The list of top-level blocks that were affected by the run. Returns a fresh copy on every call — * mutating the returned array does not affect the result's internal state. */ get affectedBlocks(): ReadonlyArray; set affectedBlocks(value: Array); }