fix(native-storage): add missing keys method (#1495)

fix #1415
This commit is contained in:
Daniel Sogl 2017-05-07 15:31:59 +02:00 committed by Ibby Hadeed
parent b2d07b43cc
commit 8311aaf893

View File

@ -53,6 +53,13 @@ export class NativeStorage extends IonicNativePlugin {
@Cordova()
getItem(reference: string): Promise<any> { return; }
/**
* Retrieving all keys
* @returns {Promise<any>}
*/
@Cordova()
keys(): Promise<any> { return; }
/**
* Removes a single stored item
* @param reference {string}