10 lines
152 B
Swift
10 lines
152 B
Swift
|
|
||
|
|
||
|
import Foundation
|
||
|
import LocalAuthentication
|
||
|
|
||
|
var biometricType: LABiometryType {
|
||
|
let authContext = LAContext()
|
||
|
return authContext.biometryType
|
||
|
}
|