Fixed namespace

This commit is contained in:
Richard Davey 2023-11-08 15:56:28 +00:00
parent 4baa9bb80d
commit 1d15ac9a73
2 changed files with 4 additions and 3 deletions

View file

@ -17,10 +17,10 @@
* timeline.play();
* ```
*
* @event Phaser.Time.Timeline.Events#COMPLETE
* @event Phaser.Time.Events#COMPLETE
* @type {string}
* @since 3.60.1
* @since 3.61.0
*
* @param {(Phaser.Time.Timeline)} timeline - A reference to the Timeline that emitted the event.
* @param {Phaser.Time.Timeline} timeline - A reference to the Timeline that emitted the event.
*/
module.exports = 'complete';

View file

@ -11,6 +11,7 @@
module.exports = {
Clock: require('./Clock'),
Events: require('./events'),
Timeline: require('./Timeline'),
TimerEvent: require('./TimerEvent')