diff --git a/src/@ionic-native/plugins/firebase-authentication/index.ts b/src/@ionic-native/plugins/firebase-authentication/index.ts index 830d0e9cc..d00a939f4 100644 --- a/src/@ionic-native/plugins/firebase-authentication/index.ts +++ b/src/@ionic-native/plugins/firebase-authentication/index.ts @@ -126,6 +126,16 @@ export class FirebaseAuthentication extends IonicNativePlugin { return; } + /** + * Uses Apples's idToken and rawNonce (optional) to sign-in into firebase account. In order to retrieve those tokens follow instructions for Android and iOS + * @param idToken ID Token + * @param rawNonce Access Token + */ + @Cordova({ sync: true }) + signInWithApple(identityToken: string, rawNonce?: string): Promise { + return; + } + /** * Uses Facebook's accessToken to sign-in into firebase account. In order to retrieve those tokens follow instructions for Android and iOS. * @param accessToken Access Token