jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
34 lines (33 loc) • 1 kB
TypeScript
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* [[include:core/ui/button/tooltip/README.md]]
* @packageDocumentation
* @module ui/button
*/
import type { IViewBased } from "../../../../types/index";
import { UIElement } from "../../element";
export declare class UITooltip extends UIElement {
private __isOpened;
className(): string;
protected render(): string;
constructor(view: IViewBased);
private __attachedContainers;
private __onAttach;
private __listenClose;
private __addListenersOnEnter;
private __removeListenersOnLeave;
private __currentTarget;
private __onMouseLeave;
private __onMouseEnter;
private __delayShowTimeout;
private __hideTimeout;
private __open;
private __show;
private __hide;
private __hideDelay;
destruct(): void;
}