UNPKG

ngbox

Version:

ngBox is the first angular 2 module used to overlay images, videos and iframes on the current page.

15 lines (11 loc) 414 B
import { NgModule } from '@angular/core'; import { NgBoxComponent } from './ngbox.component'; import { NgBoxDirective } from './ngbox.directive'; import { CommonModule } from '@angular/common'; @NgModule({ imports: [ CommonModule ], exports: [ NgBoxComponent, NgBoxDirective ], providers: [ ], declarations: [ NgBoxComponent, NgBoxDirective ], }) export class NgBoxModule {}