Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
11e61afdc9fdbea03f79e99f889fb2adb23f8b84
/
.
/
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
{}