blob: 85e96f0ffafb2dfb66fe2420aa6bff3b1d528c3a [file] [log] [blame] [edit]
import {CommonModule} from '@angular/common';
import {NgModule} from '@angular/core';
import {MsecFormatterPipe} from './msec-formatter.pipe';
import {LabelListToStringPipe} from './label-list-to-string.pipe';
@NgModule({
imports: [CommonModule],
declarations: [
LabelListToStringPipe,
MsecFormatterPipe,
],
exports: [
LabelListToStringPipe,
MsecFormatterPipe,
],
})
export class PipesModule {}