forked from Botanical/BotanJS
19 lines
335 B
JavaScript
19 lines
335 B
JavaScript
/** @constructor
|
|
* @implements {EventTarget}
|
|
**/
|
|
var BotanJS = function() {};
|
|
|
|
/** @type {Function} */
|
|
BotanJS.define;
|
|
/** @type {Function} */
|
|
BotanJS.getDef;
|
|
|
|
/** @type {Object} */
|
|
BotanJS.log = {};
|
|
/** @type {Function} */
|
|
BotanJS.log.write;
|
|
/** @type {Function} */
|
|
BotanJS.log.read;
|
|
/** @type {Function} */
|
|
BotanJS.log.end;
|