botanjs/src/externs/BotanEvent.js
raw ยท 368 bytes
/** @constructor
* @param {string} name
* @param {*} data
**/
var BotanEvent = function (name, data){};
/** @type {*} */
BotanEvent.data;
/** @type {Function} */
BotanEvent.propagate = function() {};
/** @type {Function} */
BotanEvent.stopPropagating = function() {};
/** @type {Boolean} */
BotanEvent.propagating;
/** @type {Function} */
BotanEvent.setTarget;