blob: 3761aa808fefce904613c89f6372d7c973180f12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import {ContentAfterLastDotPipe} from "./contentAfterLastDot.pipe";
import {SearchFilterPipe} from "./searchFilter.pipe";
import {KeysPipe} from "./keys.pipe";
import {GroupByPipe} from "./groupBy.pipe";
import {NgModule} from "@angular/core";
import {SafeUrlSanitizerPipe} from "./safeUrlSanitizer.pipe";
@NgModule({
declarations: [
ContentAfterLastDotPipe,
GroupByPipe,
KeysPipe,
SearchFilterPipe,
SafeUrlSanitizerPipe
],
exports: [
ContentAfterLastDotPipe,
GroupByPipe,
KeysPipe,
SearchFilterPipe,
SafeUrlSanitizerPipe
]
})
export class GlobalPipesModule {}
|