Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
5a3bcf5f5be65737a93e3cc0e5efe18aed270e0b
/
.
/
scouting
/
www
/
pipes
/
pipes.module.ts
blob: b7dd4c40f17bcd38b31b672293c79eb47cba627e [
file
] [
log
] [
blame
]
import
{
NgModule
}
from
'@angular/core'
;
import
{
CastPipe
}
from
'./cast'
;
// Export types needed for the public API.
export
{
CastPipe
};
@NgModule
({
declarations
:
[
CastPipe
],
exports
:
[
CastPipe
],
imports
:
[],
})
export
class
PipeModule
{}