A date conversion method that displays both mouse over format and subDays.
always prompts for one more parameter. What"s wrong?
export interface Age {
age: number;
unit: AgeUnit;
}
const age$ = Observable
.combineLatest(ageNum$, ageUnit$, (_n, _u) => {
return this.toDate({age: _n, unit: _u});
})
format:
subDays: