Inexclipable tslint warnings

Hello,

I got tslint warnings when enter ionic serve. But I don’t understand why I got warnings like
'Http' is declared but never used.
But when I take a look on the file, the ‘Http’ module is used, that’s why I don’t understand why I got the warning.
Please help.

Provide your code so we can check if we can find the fault.

import {Injectable}             from '@angular/core';
import {Http, Response, Headers} from '@angular/http';

@Injectable()
export class DataRestService {

  constructor(private http: Http) {
  }

  readData( {
    return this.http.post(xxxx);
  }


L2: import {Http, Response, Headers} from ‘@angular/http’;
‘Http’ is declared but never used.