001/*
002 * To change this license header, choose License Headers in Project Properties.
003 * To change this template file, choose Tools | Templates
004 * and open the template in the editor.
005 */
006package gwt.material.design.jscore.client.api.core;
007
008import gwt.material.design.jscore.client.api.JsObject;
009import jsinterop.annotations.JsFunction;
010
011/**
012 * @author Cristian Rinaldi
013 * @param <E>
014 */
015@FunctionalInterface
016@JsFunction
017public interface EventListener<E extends JsObject> {
018    void onEvent(E event);
019}