ember-bootstrap
Version:
Bootstrap components for Ember.js
22 lines (21 loc) • 651 B
TypeScript
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 {};
//# sourceMappingURL=element.d.ts.map