SocialSharing: Add recommended shareWithOptions method

This commit is contained in:
Rodrigo Fernández 2016-06-13 19:13:58 +02:00
parent 260143c4fb
commit 895b5aaa95

View File

@ -33,6 +33,15 @@ export class SocialSharing {
})
static share (message?: string, subject?: string, file?: string|Array<string>, url?: string): void {}
/**
* Shares using the share sheet with additional options and returns a result object or an error message (requires plugin version 5.1.0+)
* @param options {object} The options object with the message, subject, files, url and chooserTitle properties.
*/
@Cordova({
platforms: ['iOS', 'Android']
})
static shareWithOptions (options: { message?: string, subject?: string, file?: string|Array<string>, url?: string, chooserTitle?: string }): Promise<any> {return; }
/**
* Checks if you can share via a specific app.
* @param appName App name or package name. Examples: instagram or com.apple.social.facebook
@ -136,4 +145,4 @@ export class SocialSharing {
static shareViaEmail(message: string, subject: string, to: Array<string>, cc: Array<string>, bcc: Array<string>, files: string|Array<string>): Promise<any> {return; }
}
}