14 lines
267 B
JavaScript
14 lines
267 B
JavaScript
/** @constructor */
|
|
System.Tick = function (){}
|
|
|
|
/** @type {Function} */
|
|
System.Tick.prototype.putStepper;
|
|
|
|
/** @type {Function} */
|
|
System.Tick.prototype.start;
|
|
/** @type {Function} */
|
|
System.Tick.prototype.stop;
|
|
|
|
/** @type {Array} */
|
|
System.Tick.prototype.steppers;
|