mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { FilterPipe } from './filter.pipe';
|
||
|
|
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
declarations: [FilterPipe],
|
||
|
|
exports: [FilterPipe],
|
||
|
|
imports: []
|
||
|
|
})
|
||
|
|
export class PipesModule { }
|