Property 'delay' does not exist on type 'Observable<string[]>'
Angular 6 comes with rxjs 6 which have some differencies. In rxjs 6 you chain operators via pipe:
let obser = from([ 1, 2, 3 ])
.pipe(
delay( 3000 )
);
Angular 6 comes with rxjs 6 which have some differencies. In rxjs 6 you chain operators via pipe:
let obser = from([ 1, 2, 3 ])
.pipe(
delay( 3000 )
);