/* * Twitter Bootstrap 4 plugin for AngularJS. * Copyright (c) 2016-2021 Rodziu * License: MIT */ import {IDirective} from 'angular'; /** * @ngInject */ export class BsPopoverBoundaryDirectiveController { private $element: JQLite; constructor($element: JQLite) { this.$element = $element; } } export function bsPopoverBoundaryDirective(): IDirective { return { restrict: 'A', controller: BsPopoverBoundaryDirectiveController }; }