2015-12-01 19:06:38 -06:00
|
|
|
import {Plugin, Cordova} from './plugin';
|
|
|
|
|
|
|
|
@Plugin({
|
|
|
|
name: 'TouchID',
|
|
|
|
plugin: 'cordova-plugin-touch-id',
|
|
|
|
pluginRef: 'plugins.touchid',
|
|
|
|
repo: 'https://github.com/EddyVerbruggen/cordova-plugin-touch-id'
|
|
|
|
})
|
|
|
|
export class TouchID {
|
|
|
|
@Cordova()
|
|
|
|
isAvailable() {};
|
|
|
|
|
|
|
|
@Cordova()
|
2015-12-01 19:33:43 -06:00
|
|
|
static verifyFingerprint(message:string) {}
|
|
|
|
|
|
|
|
@Cordova()
|
|
|
|
static verifyFingerprintWithCustomPasswordFallback(message:string) {}
|
|
|
|
|
|
|
|
@Cordova()
|
|
|
|
static verifyFingerprintWithCustomPasswordFallbackAndEnterPasswordLabel(message:string, enterPasswordLabel:string) {}
|
2015-12-01 19:06:38 -06:00
|
|
|
}
|