From 50f7b715e91e0faa19a1f430f6acfcf018158161 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Tue, 25 Aug 2015 12:22:04 -0700 Subject: [PATCH] Add missing 'params' property to 'parse'. --- parse/parse.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/parse/parse.d.ts b/parse/parse.d.ts index 399204ce2..13fa65842 100644 --- a/parse/parse.d.ts +++ b/parse/parse.d.ts @@ -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. */