diff --git a/src/ParseObject.ts b/src/ParseObject.ts index 59a486618..e99f61f79 100644 --- a/src/ParseObject.ts +++ b/src/ParseObject.ts @@ -1250,7 +1250,7 @@ class ParseObject { * @returns {Promise} A promise that is fulfilled when the fetch * completes. */ - fetch(options: FetchOptions): Promise { + fetch(options?: FetchOptions): Promise { const fetchOptions = ParseObject._getRequestOptions(options); const controller = CoreManager.getObjectController(); return controller.fetch(this, true, fetchOptions) as Promise;