refactor(base64togallery):

This commit is contained in:
Guille 2016-07-08 00:37:05 +02:00
parent 85349696c2
commit f362215dd3

View File

@ -1,4 +1,4 @@
import {Plugin, Cordova} from './plugin'; import { Cordova, Plugin } from './plugin';
/** /**
* @name Base64 To Gallery * @name Base64 To Gallery
* @description This plugin allows you to save base64 data as a png image into the device * @description This plugin allows you to save base64 data as a png image into the device
@ -28,7 +28,7 @@ export class Base64ToGallery {
* @returns {Promise} returns a promise that resolves when the image is saved. * @returns {Promise} returns a promise that resolves when the image is saved.
*/ */
@Cordova() @Cordova()
static base64ToGallery(data: string , prefix?: string ): Promise<any> { static base64ToGallery(data: string, prefix?: string): Promise<any> {
return; return;
} }