- Moment.Pipe insider core/time module - dataset.service.ts: init initial timespan with current week timestamps
21 lines
No EOL
398 B
TypeScript
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 { } |