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; }