geomon.viewer/src/common/core/core.module.ts
Arno Kaimbacher 799d08bd0b - legen-entry.component: any action via buttons
- Moment.Pipe insider core/time module
- dataset.service.ts: init initial timespan with current week timestamps
2021-10-25 16:30:50 +02:00

21 lines
No EOL
398 B
TypeScript

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { MomentPipe } from './time/moment-pipe';
import { DatasetApiService } from '../../app/services/dataset-api.service';
@NgModule({
imports: [
CommonModule
],
declarations: [
MomentPipe
],
exports: [
MomentPipe
],
providers: [
]
})
export class CoreModule { }