File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -367,8 +367,6 @@ export interface PasskeyConfigRequest {
367
367
368
368
// @public
369
369
export class PasskeyInfo {
370
- // Warning: (ae-forgotten-export) The symbol "PasskeyInfoResponse" needs to be exported by the entry point index.d.ts
371
- constructor (response : PasskeyInfoResponse );
372
370
readonly credentialId: string ;
373
371
readonly displayName? : string ;
374
372
readonly name? : string ;
Original file line number Diff line number Diff line change @@ -382,6 +382,13 @@ export class PasskeyInfo {
382
382
*/
383
383
public readonly displayName ?: string ;
384
384
385
+ /**
386
+ * Initializes the PasskeyInfo object using the server side response.
387
+ *
388
+ * @param response - The server side response.
389
+ * @constructor
390
+ * @internal
391
+ */
385
392
constructor ( response : PasskeyInfoResponse ) {
386
393
if ( ! isNonNullObject ( response ) ) {
387
394
throw new FirebaseAuthError (
You can’t perform that action at this time.
0 commit comments