import {Response} from "@angular/http";
/**
 * Created by jd on 19/02/2016.
 */
export interface IToken extends Response
{
    localId?:number;
    access_token: string,
    token_type: string,
    expires_in: number,
    refresh_token: string,
    perfis: string
}



