1 import {Injectable} from '@angular/core';
4 * Configuration service for the PlxTooltip directive.
5 * You can inject this service, typically in your root component, and customize the values of its properties in
6 * order to provide default values for all the tooltips used in the application.
9 export class PlxTooltipConfig {
10 public placement: 'top' | 'bottom' | 'left' | 'right' = 'top';
11 public triggers = 'hover';
12 public container: string;