docs(Base64ToGallery): update docs

This commit is contained in:
mhartington 2016-07-05 16:11:27 -04:00
parent ef960c8aec
commit eee5fd0c17
No known key found for this signature in database
GPG Key ID: C0CE5F60E890DB47

View File

@ -23,12 +23,13 @@ export class Base64ToGallery {
/**
* Converts a base64 string to an image file in the device gallery
* @param data
* @param prefix
* @param {string} data The actual base64 string that you want to save
* @param {sstring} prefix Prefix the file with a string. Default is 'img_'. Optional.
* @returns {Promise} returns a promise that resolves when the image is saved.
*/
@Cordova()
static base64ToGallery(data: string , prefix?: string ): Promise<any> {
return;
}
}
}