We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cbad62 commit b852ab6Copy full SHA for b852ab6
tools/docs/jsdoc/typedefs/arrays.js
@@ -49,7 +49,13 @@
49
*/
50
51
/**
52
-* A string array.
+* An array containing only string primitives.
53
*
54
* @typedef {Array<string>} StringArray
55
56
+
57
+/**
58
+* An array containing only plain objects.
59
+*
60
+* @typedef {Array<Object>} ObjectArray
61
+*/
tools/docs/jsdoc/typedefs/numbers.js
@@ -174,3 +174,9 @@
174
175
* @typedef {number} NegativeNumber
176
177
178
179
+* A finite number primitive; i.e., neither `NaN` or positive or negative infinity.
180
181
+* @typedef {number} FiniteNumber
182
0 commit comments