UNPKG

@ckeditor/ckeditor5-ai

Version:

AI features for CKEditor 5.

24 lines (23 loc) 862 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/ui/aireviewmodereviewchecklistview */ import type { Locale } from 'ckeditor5/src/utils.js'; import { ListItemView } from 'ckeditor5/src/ui.js'; import type { AIReviewCheck } from '../model/aireviewcheck.js'; import '../../../theme/aireviewmode/aireviewmode-check-list.css'; export declare class AIReviewModeReviewCheckListView extends ListItemView { constructor(locale: Locale); /** * Sets the checks to be displayed in the list. */ setChecks(checks: Array<AIReviewCheck>): void; /** * Indicates whether there are any checks in the list. */ hasChecks(): boolean; resetAllParameterizedChecks(): void; }