Skip to content

Commit 30d8d98

Browse files
committed
Fix RecaptchaVerifier constructor annotation
1 parent 459b907 commit 30d8d98

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

packages/auth/src/platform_browser/recaptcha/recaptcha_verifier.ts

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,14 @@ export class RecaptchaVerifier implements ApplicationVerifierInternal {
6767
private recaptcha: Recaptcha | null = null;
6868

6969
/**
70+
* @remarks
71+
* Check the reCAPTCHA docs for a comprehensive list. All parameters are accepted except for
72+
* the sitekey. Firebase Auth backend provisions a reCAPTCHA for each project and will
73+
* configure this upon rendering. For an invisible reCAPTCHA, a size key must have the value
74+
* 'invisible'.
7075
*
76+
* @param authExtern - The corresponding Firebase {@link Auth} instance.
77+
*
7178
* @param containerOrId - The reCAPTCHA container parameter.
7279
*
7380
* @remarks
@@ -77,14 +84,6 @@ export class RecaptchaVerifier implements ApplicationVerifierInternal {
7784
* initialization.
7885
*
7986
* @param parameters - The optional reCAPTCHA parameters.
80-
*
81-
* @remarks
82-
* Check the reCAPTCHA docs for a comprehensive list. All parameters are accepted except for
83-
* the sitekey. Firebase Auth backend provisions a reCAPTCHA for each project and will
84-
* configure this upon rendering. For an invisible reCAPTCHA, a size key must have the value
85-
* 'invisible'.
86-
*
87-
* @param authExtern - The corresponding Firebase {@link Auth} instance.
8887
*/
8988
constructor(
9089
authExtern: Auth,

0 commit comments

Comments
 (0)