Add missing 'params' property to 'parse'.

This commit is contained in:
Daniel Rosenwasser
2015-08-25 12:22:04 -07:00
parent 1d6c126e8e
commit 50f7b715e9

4
parse/parse.d.ts vendored
View File

@@ -890,6 +890,10 @@ declare namespace Parse {
*The method of the request (i.e GET, POST, etc).
*/
method?: string;
/**
* The query portion of the url.
*/
params?: any;
/**
* The url to send the request to.
*/