﻿///<reference path="IToast.d.ts"/>
/**
 * Created by jd on 10/09/2015.
 */

interface INotificationService
{
    show(newToast:IToast):void;

    /**
     * Description of my method
     * @method showNotification
     * @param {String} title - Este é o título que será usado na notificação...
     * @param {String} sBody - Esta é o corpo da mensagem que será mostrado ao usuário
     ** @param {Function} calback - Passado para receber a notificação de clique.
     */
    showNotification(title:string, sBody:string, calback?:Function):void;
}