UNPKG

356 BTypeScriptView Raw
1import type Quill from '../core.js';
2import type { Bounds } from '../core/selection.js';
3declare class Tooltip {
4 quill: Quill;
5 boundsContainer: HTMLElement;
6 root: HTMLDivElement;
7 constructor(quill: Quill, boundsContainer?: HTMLElement);
8 hide(): void;
9 position(reference: Bounds): number;
10 show(): void;
11}
12export default Tooltip;