UNPKG

682 BTypeScriptView Raw
1import * as i0 from "@angular/core";
2/** Default values provider for tooltip */
3export declare class TooltipConfig {
4 /** sets disable adaptive position */
5 adaptivePosition: boolean;
6 /** tooltip placement, supported positions: 'top', 'bottom', 'left', 'right' */
7 placement: string;
8 /** array of event names which triggers tooltip opening */
9 triggers: string;
10 /** a selector specifying the element the tooltip should be appended to. */
11 container?: string;
12 /** delay before showing the tooltip */
13 delay: number;
14 static ɵfac: i0.ɵɵFactoryDeclaration<TooltipConfig, never>;
15 static ɵprov: i0.ɵɵInjectableDeclaration<TooltipConfig>;
16}