UNPKG

ember-bootstrap

Version:
22 lines (20 loc) 614 B
import ContextualHelpElement, { type ContextualHelpElementSignature } from '../bs-contextual-help/element'; type BsTooltipElementSignature = ContextualHelpElementSignature & { Blocks: { default: []; }; Element: HTMLElement; }; /** Internal component for tooltip's markup. Should not be used directly. @class TooltipElement @namespace Components @extends Components.ContextualHelpElement @private */ export default class TooltipElement extends ContextualHelpElement<BsTooltipElementSignature> { arrowClass: string; placementClassPrefix: string; offset: number[]; } export {};