Project

General

Profile

1
/**
2
 * angular2-cookie-law
3
 *
4
 * Copyright 2016-2017, @andreasonny83, All rights reserved.
5
 *
6
 * @author: @andreasonny83 <andreasonny83@gmail.com>
7
 */
8
import { NgModule } from '@angular/core';
9
import { CommonModule } from '@angular/common';
10
import { CookieLawComponent } from './cookie-law.component';
11
import { CookieLawService } from './cookie-law.service';
12

    
13
@NgModule({
14
  imports: [ CommonModule ],
15
  declarations: [ CookieLawComponent ],
16
  providers: [ CookieLawService ],
17
  exports: [ CookieLawComponent ]
18
})
19
export class CookieLawModule { }
20

    
21
export {
22
  CookieLawComponent,
23
  CookieLawService
24
};
(4-4/6)