angular-bootstrap-md
Version:
<a href="http://mdbootstrap.com/docs/angular/getting-started/download/"><img src="https://mdbootstrap.com/img/Marketing/general/logo/medium/mdb-angular2.png"></a> # Angular Bootstrap with Material Design
18 lines (17 loc) • 552 B
TypeScript
import { AfterViewInit, ElementRef } from '@angular/core';
import { TooltipConfig } from './tooltip.service';
export declare class TooltipContainerComponent implements AfterViewInit {
elem: ElementRef;
classMap: any;
placement: string;
popupClass: string;
animation: boolean;
containerClass: string;
tooltipInner: ElementRef;
tooltipArrow: ElementRef;
show: boolean;
get tooltipClasses(): string;
get isBs3(): boolean;
constructor(config: TooltipConfig, elem: ElementRef);
ngAfterViewInit(): void;
}