How to use @angular/http?
So I just want to experiment with making http calls from typescript file in my angular2 project.
In the file, I have
import { Http, Response } from '@angular/http';
var httpRequest = Http;
whatever function calls I make using the httpRequest object, I get function not defined. What am I doing wrong?