@@ -27,7 +27,7 @@ $root.vector_tile = (function() {
27
27
* Constructs a new Tile.
28
28
* @exports vector_tile.Tile
29
29
* @constructor
30
- * @param {Object } [properties] Properties to set
30
+ * @param {Object.<string,*>= } [properties] Properties to set
31
31
*/
32
32
function Tile ( properties ) {
33
33
if ( properties )
@@ -48,7 +48,7 @@ $root.vector_tile = (function() {
48
48
49
49
/**
50
50
* Creates a new Tile instance using the specified properties.
51
- * @param {Object } [properties] Properties to set
51
+ * @param {Object.<string,*>= } [properties] Properties to set
52
52
* @returns {vector_tile.Tile } Tile instance
53
53
*/
54
54
Tile . create = function create ( properties ) {
@@ -234,7 +234,7 @@ $root.vector_tile = (function() {
234
234
* Constructs a new Value.
235
235
* @exports vector_tile.Tile.Value
236
236
* @constructor
237
- * @param {Object } [properties] Properties to set
237
+ * @param {Object.<string,*>= } [properties] Properties to set
238
238
*/
239
239
function Value ( properties ) {
240
240
if ( properties )
@@ -286,7 +286,7 @@ $root.vector_tile = (function() {
286
286
287
287
/**
288
288
* Creates a new Value instance using the specified properties.
289
- * @param {Object } [properties] Properties to set
289
+ * @param {Object.<string,*>= } [properties] Properties to set
290
290
* @returns {vector_tile.Tile.Value } Value instance
291
291
*/
292
292
Value . create = function create ( properties ) {
@@ -557,7 +557,7 @@ $root.vector_tile = (function() {
557
557
* Constructs a new Feature.
558
558
* @exports vector_tile.Tile.Feature
559
559
* @constructor
560
- * @param {Object } [properties] Properties to set
560
+ * @param {Object.<string,*>= } [properties] Properties to set
561
561
*/
562
562
function Feature ( properties ) {
563
563
if ( properties )
@@ -596,7 +596,7 @@ $root.vector_tile = (function() {
596
596
597
597
/**
598
598
* Creates a new Feature instance using the specified properties.
599
- * @param {Object } [properties] Properties to set
599
+ * @param {Object.<string,*>= } [properties] Properties to set
600
600
* @returns {vector_tile.Tile.Feature } Feature instance
601
601
*/
602
602
Feature . create = function create ( properties ) {
@@ -871,7 +871,7 @@ $root.vector_tile = (function() {
871
871
* Constructs a new Layer.
872
872
* @exports vector_tile.Tile.Layer
873
873
* @constructor
874
- * @param {Object } [properties] Properties to set
874
+ * @param {Object.<string,*>= } [properties] Properties to set
875
875
*/
876
876
function Layer ( properties ) {
877
877
if ( properties )
@@ -923,7 +923,7 @@ $root.vector_tile = (function() {
923
923
924
924
/**
925
925
* Creates a new Layer instance using the specified properties.
926
- * @param {Object } [properties] Properties to set
926
+ * @param {Object.<string,*>= } [properties] Properties to set
927
927
* @returns {vector_tile.Tile.Layer } Layer instance
928
928
*/
929
929
Layer . create = function create ( properties ) {
0 commit comments