/**
 * Created by jd on 03/11/2015.
 */
interface IPushNotificationService
{
    connect(tokenString:string):void;
    tryReconect():void;
}

interface IPushNotificationServiceProvider
{
    setSignalrAddress(address:string):void;
}

