Enable tslint check for `console.log` as a follow-up to https://github.com/angular/angular/issues/13018
		
			
				
	
	
		
			20 lines
		
	
	
		
			555 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			555 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * @license
 | 
						|
 * Copyright Google Inc. All Rights Reserved.
 | 
						|
 *
 | 
						|
 * Use of this source code is governed by an MIT-style license that can be
 | 
						|
 * found in the LICENSE file at https://angular.io/license
 | 
						|
 */
 | 
						|
 | 
						|
/* tslint:disable:no-console  */
 | 
						|
// #docregion Observable
 | 
						|
import {Observable} from 'rxjs/Observable';
 | 
						|
import {Subscriber} from 'rxjs/Subscriber';
 | 
						|
 | 
						|
const obs = new Observable<number>((obs: Subscriber<number>) => {
 | 
						|
  let i = 0;
 | 
						|
  setInterval(() => { obs.next(++i); }, 1000);
 | 
						|
});
 | 
						|
obs.subscribe(i => console.log(`${i} seconds elapsed`));
 | 
						|
// #enddocregion
 |