From f362215dd3ba31657212ceeda686af2e5d87c66d Mon Sep 17 00:00:00 2001 From: Guille Date: Fri, 8 Jul 2016 00:37:05 +0200 Subject: [PATCH] refactor(base64togallery): --- src/plugins/base64togallery.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/base64togallery.ts b/src/plugins/base64togallery.ts index c786f0078..7ae62da9b 100644 --- a/src/plugins/base64togallery.ts +++ b/src/plugins/base64togallery.ts @@ -1,4 +1,4 @@ -import {Plugin, Cordova} from './plugin'; +import { Cordova, Plugin } from './plugin'; /** * @name Base64 To Gallery * @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. */ @Cordova() - static base64ToGallery(data: string , prefix?: string ): Promise { + static base64ToGallery(data: string, prefix?: string): Promise { return; }