mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-19 14:52:34 +00:00
25 lines
451 B
TypeScript
25 lines
451 B
TypeScript
import { NgModule } from '@angular/core';
|
|
|
|
import { KeysPipe } from './keys.pipe';
|
|
import { GetByIdPipe } from './getById.pipe';
|
|
import { HtmlToPlaintextPipe } from './htmlToPlaintext.pipe';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
KeysPipe,
|
|
GetByIdPipe,
|
|
HtmlToPlaintextPipe
|
|
],
|
|
imports : [],
|
|
exports : [
|
|
KeysPipe,
|
|
GetByIdPipe,
|
|
HtmlToPlaintextPipe
|
|
]
|
|
})
|
|
|
|
export class FusePipesModule
|
|
{
|
|
|
|
}
|