React Native Firebase
    Preparing search index...
    interface PhoneAuthListener {
        catch(
            onRejected: (error: ReactNativeFirebase.NativeFirebaseError) => any,
        ): Promise<any>;
        on(
            event: string,
            observer: (snapshot: PhoneAuthSnapshot) => void,
            errorCb?: (error: PhoneAuthError) => void,
            successCb?: (snapshot: PhoneAuthSnapshot) => void,
        ): PhoneAuthListener;
        then(
            onFulfilled?: ((value: PhoneAuthSnapshot) => any) | null,
            onRejected?:
                | ((error: ReactNativeFirebase.NativeFirebaseError) => any)
                | null,
        ): Promise<any>;
    }
    Index

    Methods

    Methods