From a5b4632ceb1a962157ec2be420dfcf5dcf9abe4f Mon Sep 17 00:00:00 2001 From: Ibby Date: Thu, 26 Jan 2017 20:30:44 -0500 Subject: [PATCH] fix(file-transfer): fix return type of upload method fixes #1002 --- src/plugins/filetransfer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/filetransfer.ts b/src/plugins/filetransfer.ts index f0aec0d4e7..dde1da07ba 100644 --- a/src/plugins/filetransfer.ts +++ b/src/plugins/filetransfer.ts @@ -223,7 +223,7 @@ export class Transfer { successIndex: 2, errorIndex: 3 }) - upload(fileUrl: string, url: string, options?: FileUploadOptions, trustAllHosts?: boolean): Promise { + upload(fileUrl: string, url: string, options?: FileUploadOptions, trustAllHosts?: boolean): Promise { return; }