From 1e6937164894d07b018df66c01b0e806d7a51051 Mon Sep 17 00:00:00 2001 From: Guille Date: Sun, 17 Jul 2016 20:01:31 +0200 Subject: [PATCH] refactor(nativestorage): --- src/plugins/nativestorage.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/plugins/nativestorage.ts b/src/plugins/nativestorage.ts index 3a19ef6f..00399a1e 100644 --- a/src/plugins/nativestorage.ts +++ b/src/plugins/nativestorage.ts @@ -1,8 +1,10 @@ -import {Plugin, Cordova} from './plugin'; +import { Cordova, Plugin } from './plugin'; + + /** * @name Native Storage * @description - * + * * @usage * ```typescript * import {NativeStorage} from 'ionic-native'; @@ -53,4 +55,5 @@ export class NativeStorage { */ @Cordova() static clear(): Promise {return; } + }