refactor(nativestorage):

This commit is contained in:
Guille 2016-07-17 20:01:31 +02:00
parent df1d42fa99
commit 1e69371648

View File

@ -1,8 +1,10 @@
import {Plugin, Cordova} from './plugin'; import { Cordova, Plugin } from './plugin';
/** /**
* @name Native Storage * @name Native Storage
* @description * @description
* *
* @usage * @usage
* ```typescript * ```typescript
* import {NativeStorage} from 'ionic-native'; * import {NativeStorage} from 'ionic-native';
@ -53,4 +55,5 @@ export class NativeStorage {
*/ */
@Cordova() @Cordova()
static clear(): Promise<any> {return; } static clear(): Promise<any> {return; }
} }