@ckeditor/ckeditor5-ai
Version:
AI features for CKEditor 5.
18 lines (17 loc) • 723 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
*/
import { ListView, type FilteredView } from 'ckeditor5/src/ui.js';
import type { AIChatHistoryListView } from './aichathistorylistview.js';
export declare class AIChatHistorySectionListView extends ListView implements FilteredView {
sections: Array<AIChatHistoryListView>;
constructor(locale: any, sections: Array<AIChatHistoryListView>);
/**
* Filters all sections based on the given regular expression.
*/
filter(regExp: RegExp | null): {
resultsCount: number;
totalItemsCount: number;
};
}