UNPKG

jodit-pro

Version:

PRO Version of Jodit Editor

18 lines (17 loc) 709 B
/*! * Jodit Editor PRO (https://xdsoft.net/jodit/) * See LICENSE.md in the project root for license information. * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/ */ import { UIElement } from "jodit/esm/core/ui/element"; import type { IAutoCompleteItem } from "../interface"; export declare class AutocompleteItem extends UIElement { item: IAutoCompleteItem; private onClick; readonly value: string; /** @override */ className(): string; constructor(jodit: AutocompleteItem['jodit'], item: IAutoCompleteItem, onClick: (value: string) => void); protected onClickPrevent(e: MouseEvent): void; protected onClickHandler(): void; }