Skip to content

Commit 77ad6c6

Browse files
authored
Correct type for Phaser.Tilemaps.LayerData#data
Fixes phaserjs#4904 ?
1 parent 074c91c commit 77ad6c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tilemaps/mapdata/LayerData.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ var LayerData = new Class({
194194
* An array of the tile indexes
195195
*
196196
* @name Phaser.Tilemaps.LayerData#data
197-
* @type {(number[])}
197+
* @type {Array.<Array.<Phaser.Tilemaps.Tile>>}
198198
* @since 3.0.0
199199
*/
200200
this.data = GetFastValue(config, 'data', []);

0 commit comments

Comments
 (0)