1 import { Injectable } from '@angular/core';
4 * Configuration service for the OesDaterangePopover 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 popovers used in the application.
9 export class OesDaterangePopoverConfig {
10 public placement: 'top' | 'bottom' | 'left' | 'right' = 'top';
11 public triggers = 'click';
12 public container: string;