Philipp Schrader | 3d7dedc | 2024-03-16 16:27:25 -0700 | [diff] [blame^] | 1 | import {NgModule} from '@angular/core'; |
2 | import {CastPipe} from './cast'; | ||||
3 | |||||
4 | // Export types needed for the public API. | ||||
5 | export {CastPipe}; | ||||
6 | |||||
7 | @NgModule({ | ||||
8 | declarations: [CastPipe], | ||||
9 | exports: [CastPipe], | ||||
10 | imports: [], | ||||
11 | }) | ||||
12 | export class PipeModule {} |