fix(secure-storage): add missing function (#1626)

* fix(secure-storage): add missing function

fix #1625

* Update index.ts
This commit is contained in:
Daniel Sogl 2017-06-01 03:03:46 +02:00 committed by Ibby Hadeed
parent 2d3add6507
commit 8b9995a5af

View File

@ -57,6 +57,13 @@ export class SecureStorageObject {
})
clear(): Promise<any> { return; }
/**
* Brings up the screen-lock settings
* @returns {Promise<any>}
*/
@CordovaInstance()
secureDevice(): Promise<any> { return; }
}
/**