UNPKG

@kazion/react-native-apple-auth

Version:

A React Native module for Apple Sign In Built with Nitro Modules.

28 lines 599 B
export declare enum AppleAuthScopes { FULL_NAME = 0, EMAIL = 1 } export declare enum AppleAuthOperation { LOGIN = 0, LOGOUT = 1, IMPLICIT = 2 } export declare enum RealUserStatus { UNSUPPORTED = 0, UNKNOWN = 1, LIKELY_REAL = 2 } export type AppleAuthCredential = { user: string; email?: string; fullName?: string; authorizationCode?: string; identityToken?: string; state?: string; }; export type AppleAuthOptions = { operation?: AppleAuthOperation; scopes: AppleAuthScopes[]; nonce?: string; }; //# sourceMappingURL=types.d.ts.map