dd1cc254746bc29eca77a78840c8d0f6aa108482
[sdc/sdc-workflow-designer.git] /
1 import {Injectable} from '@angular/core';
2
3 /**
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.
7  */
8 @Injectable()
9 export class PlxTooltipConfig {
10   public placement: 'top' | 'bottom' | 'left' | 'right' = 'top';
11   public triggers = 'hover';
12   public container: string;
13 }