Skip to content

Commit 4aa04bc

Browse files
committed
fix build error
1 parent be162a3 commit 4aa04bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages-exp/installations-exp/src/functions/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const factory: InstanceFactory<'installations-exp'> = (
4545
app,
4646
getId: () => getId(installations),
4747
getToken: (forceRefresh?: boolean) => getToken(installations, forceRefresh),
48-
delete: () => deleteInstallations(installations),
48+
_delete: () => deleteInstallations(installations),
4949
onIdChange: (callback: (fid: string) => void) =>
5050
onIdChange(installations, callback)
5151
};

packages-exp/installations-exp/src/interfaces/installation-internal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export interface FirebaseInstallationsInternal extends _FirebaseService {
4040
/**
4141
* Deletes the Firebase Installation and all associated data.
4242
*/
43-
delete(): Promise<void>;
43+
_delete(): Promise<void>;
4444

4545
/**
4646
* Sets a new callback that will get called when Installlation ID changes.

0 commit comments

Comments
 (0)