From 1976c38dc73be088640aeac4e355d257b945cff7 Mon Sep 17 00:00:00 2001 From: Ibby Date: Tue, 6 Dec 2016 09:11:09 -0500 Subject: [PATCH] docs(): display interfaces --- src/plugins/filetransfer.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/plugins/filetransfer.ts b/src/plugins/filetransfer.ts index d9ab5e413..f0aec0d4e 100644 --- a/src/plugins/filetransfer.ts +++ b/src/plugins/filetransfer.ts @@ -173,6 +173,10 @@ export interface FileTransferError { * cd files * ls * ``` + * @interfaces + * FileUploadOptions + * FileUploadResult + * FileTransferError */ @Plugin({ pluginName: 'FileTransfer', @@ -219,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; }