UNPKG

@kazion/react-native-apple-auth

Version:

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

32 lines (27 loc) 503 B
export enum AppleAuthScopes { FULL_NAME, EMAIL, } export enum AppleAuthOperation { LOGIN, LOGOUT, IMPLICIT } export enum RealUserStatus { UNSUPPORTED, UNKNOWN, LIKELY_REAL, } export type AppleAuthCredential = { user: string email?: string fullName?: string authorizationCode?: string identityToken?: string state?: string } export type AppleAuthOptions = { operation?: AppleAuthOperation scopes: AppleAuthScopes[] nonce?: string }