From c23f5e90dc75176f6043f305c2b72d018ebd4c71 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Thu, 14 Jul 2016 09:41:49 -0500 Subject: [PATCH] fix(touchid): make isAvailable static --- src/plugins/touchid.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/touchid.ts b/src/plugins/touchid.ts index a84a0af69f..86d0ccafe3 100644 --- a/src/plugins/touchid.ts +++ b/src/plugins/touchid.ts @@ -53,7 +53,7 @@ export class TouchID { * @return {Promise} Returns a Promise that resolves if yes, rejects if no. */ @Cordova() - isAvailable(): Promise { return; } + static isAvailable(): Promise { return; } /** * Show TouchID dialog and wait for a fingerprint scan. If user taps 'Enter Password' button, brings up standard system passcode screen.