This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Event{ | |
int on(String type, String value); | |
void off(String type, Object object); | |
void off(String type, int index); | |
void off(String type); | |
void off(); | |
*List<*Object> trigger(String type, Object object); | |
Object trigger(String type); |