UNPKG

@ckeditor/ckeditor5-mention

Version:

Mention feature for CKEditor 5.

16 lines (15 loc) 511 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 mention/ui/mentionlistitemview */ import { ListItemView } from 'ckeditor5/src/ui.js'; import type { MentionFeedItem } from '../mentionconfig.js'; export default class MentionListItemView extends ListItemView { item: MentionFeedItem; marker: string; highlight(): void; removeHighlight(): void; }