@@ -1469,11 +1469,12 @@ declare namespace firebase.appCheck {
1469
1469
export interface AppCheck {
1470
1470
/**
1471
1471
* Activate AppCheck
1472
- * @param siteKeyOrProvider reCAPTCHA sitekey or custom token provider
1473
- * @param isTokenAutoRefreshEnabled If true, enables SDK to automatically
1474
- * refresh AppCheck token as needed. If undefined, the value will default
1475
- * to the value of `app.automaticDataCollectionEnabled`. That property
1476
- * defaults to false and can be set in the app config.
1472
+ * @param siteKeyOrProvider reCAPTCHA v3 site key (public key) or
1473
+ * custom token provider.
1474
+ * @param isTokenAutoRefreshEnabled If true, the SDK automatically
1475
+ * refreshes App Check tokens as needed. If undefined, defaults to the
1476
+ * value of `app.automaticDataCollectionEnabled`, which defaults to
1477
+ * false and can be set in the app config.
1477
1478
*/
1478
1479
activate (
1479
1480
siteKeyOrProvider : string | AppCheckProvider ,
@@ -1482,16 +1483,16 @@ declare namespace firebase.appCheck {
1482
1483
1483
1484
/**
1484
1485
*
1485
- * @param isTokenAutoRefreshEnabled If set to true, enables SDK to
1486
- * automatically refresh AppCheck token as needed. If false, disables this
1487
- * functionality. This overrides any value set during `activate()`.
1486
+ * @param isTokenAutoRefreshEnabled If true, the SDK automatically
1487
+ * refreshes App Check tokens as needed. This overrides any value set
1488
+ * during `activate()`.
1488
1489
*/
1489
1490
setTokenAutoRefreshEnabled ( isTokenAutoRefreshEnabled : boolean ) : void ;
1490
1491
}
1491
1492
1492
1493
/**
1493
- * An AppCheck provider. This may be either the built-in reCAPTCHA provider
1494
- * or a custom provider. For more on custom providers, see
1494
+ * An App Check provider. This can be either the built-in reCAPTCHA
1495
+ * provider or a custom provider. For more on custom providers, see
1495
1496
* https://firebase.google.com/docs/app-check/web-custom-provider
1496
1497
*/
1497
1498
interface AppCheckProvider {
0 commit comments