Skip to content

Commit 8a6db2f

Browse files
committed
mark constructor internal
1 parent 9088399 commit 8a6db2f

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

etc/firebase-admin.auth.api.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,8 +367,6 @@ export interface PasskeyConfigRequest {
367367

368368
// @public
369369
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);
372370
readonly credentialId: string;
373371
readonly displayName?: string;
374372
readonly name?: string;

src/auth/user-record.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,13 @@ export class PasskeyInfo {
382382
*/
383383
public readonly displayName?: string;
384384

385+
/**
386+
* Initializes the PasskeyInfo object using the server side response.
387+
*
388+
* @param response - The server side response.
389+
* @constructor
390+
* @internal
391+
*/
385392
constructor(response: PasskeyInfoResponse) {
386393
if (!isNonNullObject(response)) {
387394
throw new FirebaseAuthError(

0 commit comments

Comments
 (0)