@@ -27,7 +27,7 @@ $root.vector_tile = (function() {
2727 * Constructs a new Tile.
2828 * @exports vector_tile.Tile
2929 * @constructor
30- * @param {Object } [properties] Properties to set
30+ * @param {Object.<string,*>= } [properties] Properties to set
3131 */
3232 function Tile ( properties ) {
3333 if ( properties )
@@ -48,7 +48,7 @@ $root.vector_tile = (function() {
4848
4949 /**
5050 * Creates a new Tile instance using the specified properties.
51- * @param {Object } [properties] Properties to set
51+ * @param {Object.<string,*>= } [properties] Properties to set
5252 * @returns {vector_tile.Tile } Tile instance
5353 */
5454 Tile . create = function create ( properties ) {
@@ -234,7 +234,7 @@ $root.vector_tile = (function() {
234234 * Constructs a new Value.
235235 * @exports vector_tile.Tile.Value
236236 * @constructor
237- * @param {Object } [properties] Properties to set
237+ * @param {Object.<string,*>= } [properties] Properties to set
238238 */
239239 function Value ( properties ) {
240240 if ( properties )
@@ -286,7 +286,7 @@ $root.vector_tile = (function() {
286286
287287 /**
288288 * Creates a new Value instance using the specified properties.
289- * @param {Object } [properties] Properties to set
289+ * @param {Object.<string,*>= } [properties] Properties to set
290290 * @returns {vector_tile.Tile.Value } Value instance
291291 */
292292 Value . create = function create ( properties ) {
@@ -557,7 +557,7 @@ $root.vector_tile = (function() {
557557 * Constructs a new Feature.
558558 * @exports vector_tile.Tile.Feature
559559 * @constructor
560- * @param {Object } [properties] Properties to set
560+ * @param {Object.<string,*>= } [properties] Properties to set
561561 */
562562 function Feature ( properties ) {
563563 if ( properties )
@@ -596,7 +596,7 @@ $root.vector_tile = (function() {
596596
597597 /**
598598 * Creates a new Feature instance using the specified properties.
599- * @param {Object } [properties] Properties to set
599+ * @param {Object.<string,*>= } [properties] Properties to set
600600 * @returns {vector_tile.Tile.Feature } Feature instance
601601 */
602602 Feature . create = function create ( properties ) {
@@ -871,7 +871,7 @@ $root.vector_tile = (function() {
871871 * Constructs a new Layer.
872872 * @exports vector_tile.Tile.Layer
873873 * @constructor
874- * @param {Object } [properties] Properties to set
874+ * @param {Object.<string,*>= } [properties] Properties to set
875875 */
876876 function Layer ( properties ) {
877877 if ( properties )
@@ -923,7 +923,7 @@ $root.vector_tile = (function() {
923923
924924 /**
925925 * Creates a new Layer instance using the specified properties.
926- * @param {Object } [properties] Properties to set
926+ * @param {Object.<string,*>= } [properties] Properties to set
927927 * @returns {vector_tile.Tile.Layer } Layer instance
928928 */
929929 Layer . create = function create ( properties ) {
0 commit comments