Home
last modified time | relevance | path

Searched refs:AuthenticationType (Results 1 – 15 of 15) sorted by relevance

/expo/packages/expo-local-authentication/build/
H A DLocalAuthentication.types.js2 export var AuthenticationType; variable
3 (function (AuthenticationType) { argument
7 AuthenticationType[AuthenticationType["FINGERPRINT"] = 1] = "FINGERPRINT";
11 AuthenticationType[AuthenticationType["FACIAL_RECOGNITION"] = 2] = "FACIAL_RECOGNITION";
16 AuthenticationType[AuthenticationType["IRIS"] = 3] = "IRIS";
17 })(AuthenticationType || (AuthenticationType = {}));
H A DLocalAuthentication.d.ts1 import { LocalAuthenticationOptions, AuthenticationType, LocalAuthenticationResult, SecurityLevel }…
2 export { LocalAuthenticationOptions, AuthenticationType, LocalAuthenticationResult, SecurityLevel };
16 export declare function supportedAuthenticationTypesAsync(): Promise<AuthenticationType[]>;
H A DExpoLocalAuthentication.web.d.ts1 import { AuthenticationType, SecurityLevel } from './LocalAuthentication.types';
7 supportedAuthenticationTypesAsync(): Promise<AuthenticationType[]>;
H A DLocalAuthentication.js4 import { AuthenticationType, SecurityLevel, } from './LocalAuthentication.types';
5 export { AuthenticationType, SecurityLevel };
H A DLocalAuthentication.types.d.ts8 export declare enum AuthenticationType { enum
H A DExpoLocalAuthentication.web.js.map1AuthenticationType, SecurityLevel } from './LocalAuthentication.types';\n\nexport default {\n get…
H A DLocalAuthentication.js.map1AuthenticationType,\n LocalAuthenticationResult,\n SecurityLevel,\n} from './LocalAuthentication…
H A DLocalAuthentication.types.js.map1 … error: string; warning?: string };\n\n// @needsAudit\nexport enum AuthenticationType {\n /**\n …
/expo/packages/expo-local-authentication/src/
H A DExpoLocalAuthentication.web.ts1 import { AuthenticationType, SecurityLevel } from './LocalAuthentication.types';
16 async supportedAuthenticationTypesAsync(): Promise<AuthenticationType[]> {
H A DLocalAuthentication.ts7 AuthenticationType,
12 export { LocalAuthenticationOptions, AuthenticationType, LocalAuthenticationResult, SecurityLevel };
35 export async function supportedAuthenticationTypesAsync(): Promise<AuthenticationType[]> {
H A DLocalAuthentication.types.ts6 export enum AuthenticationType { enum
/expo/packages/expo-local-authentication/ios/
H A DLocalAuthenticationModule.swift30 supportedAuthenticationTypes.append(AuthenticationType.fingerprint.rawValue) in definition()
34 supportedAuthenticationTypes.append(AuthenticationType.facialRecognition.rawValue) in definition()
160 enum AuthenticationType: Int {
/expo/ios/versioned/sdk49/ExpoLocalAuthentication/
H A DLocalAuthenticationModule.swift30 supportedAuthenticationTypes.append(AuthenticationType.fingerprint.rawValue) in definition()
34 supportedAuthenticationTypes.append(AuthenticationType.facialRecognition.rawValue) in definition()
160 enum AuthenticationType: Int {
/expo/ios/versioned/sdk48/ExpoLocalAuthentication/
H A DLocalAuthenticationModule.swift30 supportedAuthenticationTypes.append(AuthenticationType.fingerprint.rawValue) in definition()
34 supportedAuthenticationTypes.append(AuthenticationType.facialRecognition.rawValue) in definition()
160 enum AuthenticationType: Int {
/expo/apps/native-component-list/src/screens/
H A DLocalAuthenticationScreen.tsx41 (type) => LocalAuthentication.AuthenticationType[type]