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

    
9
import { NgModule }           from '@angular/core';
10
import { CommonModule }       from '@angular/common';
11
import { CookieLawComponent } from './cookie-law.component';
12
import { CookieLawService }   from './cookie-law.service';
13

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

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