From 5fa92bc750aeb84f1e6e4dc4e1f5e58f63c13d3f Mon Sep 17 00:00:00 2001 From: Max Kapshtyk Date: Tue, 8 Oct 2019 01:06:02 +0200 Subject: [PATCH] enable option for progress callback (#38815) according to those specs https://parseplatform.org/Parse-SDK-JS/api/master/Parse.File.html , there are those options: Valid options are: useMasterKey: In Cloud Code and Node only, causes the Master Key to be used for this request. progress: In Browser only, callback for upload progress --- types/parse/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/parse/index.d.ts b/types/parse/index.d.ts index 842d50b352..f2cb6b0deb 100644 --- a/types/parse/index.d.ts +++ b/types/parse/index.d.ts @@ -259,7 +259,7 @@ declare namespace Parse { constructor(name: string, data: any, type?: string); name(): string; url(): string; - save(options?: SuccessFailureOptions): Promise; + save(options?: FullOptions): Promise; }