Ionic 2 count down timer

Hello

I need to use this example for ionic 2

Thanks.

You’re best bet is to look into observables and create something based around that.

Thanks for replaying.

But I can not include javascript files moment and svg?
How to do it.

import { TimerObservable } from 'rxjs/observable/TimerObservable';
...
private tick: number;
...
      constructor() {
        let timer = TimerObservable.create(2000, 1000).subscribe(t => { this.tick = t; });
      }
...
and in template html ...
{{tick}}
2 Likes