src/app/component/popover/popover.module.ts
/** * @license * Copyright Stbui All Rights Reserved. * https://github.com/stbui */ import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { PopoverComponent } from './popover.component'; import { PopoverDirective } from './popover.directive'; @NgModule({ imports: [CommonModule], declarations: [PopoverComponent, PopoverDirective], exports: [PopoverComponent, PopoverDirective], entryComponents: [PopoverComponent] }) export class PopoverModule {}