Error TS4053: Return type of public method from exported class has or is using name 'Observable'

hello,
i get this error while i try to run my app

this is my service code in ionic 2

import { Injectable } from ‘@angular/core’;
import { Http } from ‘@angular/http’;
import ‘rxjs/add/operator/map’;
import { Storage} from ‘@ionic/storage’;
import {NavController} from “ionic-angular”;

/*
Generated class for the MyService provider.

See Angular
for more info on providers and Angular 2 DI.
*/
@Injectable()
export class MyService {
public local :Storage;
public getsession : any;
constructor(private http: Http, private navCtrl : NavController) {
this.local = new Storage();
console.log(“my-service page”)
}

postLogin(data){
let link = “http://adirzoari.16mb.com/login.php”;
return this.http.post(link,data)
.map(res => res.json())
}

checkToken(){
return this.getsession =this.local.get(‘token’);
}

}