UNPKG

rxjs-tslint-rules

Version:
16 lines (13 loc) 334 B
import { Component } from '@angular/core'; import { Observable } from 'rxjs/Observable'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { title = 'app'; constructor() { const obs = Observable.of(1).map(value => value + 1); } }