Project

General

Profile

1
import { NgModule }            from '@angular/core';
2
import {HTMLToStringPipe} from './HTMLToString.pipe';
3

    
4

    
5

    
6
@NgModule({
7
  imports: [
8

    
9
  ],
10
  declarations: [
11
    HTMLToStringPipe
12
  ],
13
  providers:[],
14
  exports: [
15
    HTMLToStringPipe
16
    ]
17
})
18

    
19

    
20
export class HTMLToStringPipeModule{
21

    
22
}
(2-2/8)