Skip to content

Commit 55c48aa

Browse files
committed
Update externs
1 parent dc8cb29 commit 55c48aa

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

packages/firebase/externs/firebase-auth-externs.js

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,15 +1218,17 @@ firebase.auth.Auth.prototype.app;
12181218
*/
12191219
firebase.auth.Auth.prototype.currentUser;
12201220

1221+
12211222
/**
1222-
* The full emulator configuration as set on auth().emulatorConfig
1223+
* The full emulator configuration as set on `auth().emulatorConfig`.
12231224
* <ul>
12241225
* <li>protocol: the protocol used by the emulator (http or https).</li>
12251226
* <li>host: the host used to reach the emulator.</li>
12261227
* <li>port: the port used to reach the emulator.</li>
12271228
* <li>options: a list of options used to configure the SDK's interaction with
12281229
* the emulator.</li>
12291230
* </ul>
1231+
*
12301232
* @typedef {{
12311233
* protocol: string,
12321234
* host: string,
@@ -1237,26 +1239,29 @@ firebase.auth.Auth.prototype.currentUser;
12371239
* }}
12381240
*/
12391241
firebase.auth.EmulatorConfig;
1240-
1242+
1243+
12411244
/**
1242-
* The current emulator configuration, or null if not set
1245+
* The current emulator configuration, or null if not set.
12431246
*
12441247
* @type {firebase.auth.EmulatorConfig|null}
12451248
*/
12461249
firebase.auth.Auth.prototype.emulatorConfig;
1247-
1250+
1251+
12481252
/**
1249-
* Configures the SDK to talke to the Firebase Auth emulator.
1253+
* Configures the SDK to communicate with the Firebase Auth emulator.
12501254
*
12511255
* This must be called before any other Auth SDK actions are taken.
12521256
*
12531257
* Options can include `disableWarnings`. When set to true, the SDK will not
12541258
* display a warning banner at the bottom of the page.
12551259
*
12561260
* @param {string} url The full emulator url including scheme and port.
1257-
* @param {?Object} options Options for configuring the SDK's emulator config.
1261+
* @param {!Object=} options Options for configuring the SDK's emulator config.
12581262
*/
12591263
firebase.auth.Auth.prototype.useEmulator = function (url, options) {};
1264+
12601265

12611266
/**
12621267
* The current Auth instance's tenant ID. This is a readable/writable

0 commit comments

Comments
 (0)