File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1284,10 +1284,10 @@ class ParseQuery {
1284
1284
* be contained in the provided list of values.
1285
1285
*
1286
1286
* @param {string } key The key to check.
1287
- * @param {* } value The values that will match.
1287
+ * @param {Array<*> } value The values that will match.
1288
1288
* @returns {Parse.Query } Returns the query, so you can chain this call.
1289
1289
*/
1290
- containedIn ( key : string , value : mixed ) : ParseQuery {
1290
+ containedIn ( key : string , value : Array < mixed > ) : ParseQuery {
1291
1291
return this . _addCondition ( key , '$in' , value ) ;
1292
1292
}
1293
1293
@@ -1296,10 +1296,10 @@ class ParseQuery {
1296
1296
* not be contained in the provided list of values.
1297
1297
*
1298
1298
* @param {string } key The key to check.
1299
- * @param {* } value The values that will not match.
1299
+ * @param {Array<*> } value The values that will not match.
1300
1300
* @returns {Parse.Query } Returns the query, so you can chain this call.
1301
1301
*/
1302
- notContainedIn ( key : string , value : mixed ) : ParseQuery {
1302
+ notContainedIn ( key : string , value : Array < mixed > ) : ParseQuery {
1303
1303
return this . _addCondition ( key , '$nin' , value ) ;
1304
1304
}
1305
1305
You can’t perform that action at this time.
0 commit comments