@kazion/react-native-apple-auth
Version:
A React Native module for Apple Sign In Built with Nitro Modules.
8 lines (6 loc) • 304 B
text/typescript
import { type HybridObject } from 'react-native-nitro-modules';
import type { AppleAuthCredential, AppleAuthOptions } from '../types';
export interface AppleAuth
extends HybridObject<{ ios: 'swift'; android: 'kotlin' }> {
signIn(options: AppleAuthOptions): Promise<AppleAuthCredential | null>
}