forked from Botanical/BotanJS
17 lines
314 B
JavaScript
17 lines
314 B
JavaScript
/** @constructor */
|
|
System.Log = function (){}
|
|
|
|
/** @type {Function} */
|
|
System.Log.writeLine;
|
|
/** @type {Function} */
|
|
System.Log.registerHandler;
|
|
/** @type {Function} */
|
|
System.Log.removeHandler;
|
|
|
|
/** @type {const} */
|
|
System.Log.ERROR;
|
|
/** @type {const} */
|
|
System.Log.INFO;
|
|
/** @type {const} */
|
|
System.Log.SYSTEM;
|