mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-14 04:05:23 +08:00
16 lines
331 B
TypeScript
16 lines
331 B
TypeScript
![]() |
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()
|
||
|
static verifyFingerprint(message:string) {};
|
||
|
}
|