Skip to content

Commit c306925

Browse files
committed
lint fixes
1 parent 59a510f commit c306925

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/app/src/firebaseServerApp.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export class FirebaseServerAppImpl
8282
return this._refCount;
8383
}
8484

85-
incRefCount(obj: Object | undefined) {
85+
incRefCount(obj: object | undefined) : void {
8686
if (this.isDeleted) {
8787
return;
8888
}
@@ -100,7 +100,7 @@ export class FirebaseServerAppImpl
100100
}
101101

102102
private automaticCleanup(serverApp: FirebaseServerAppImpl): void {
103-
deleteApp(serverApp);
103+
void deleteApp(serverApp);
104104
}
105105

106106
get settings(): FirebaseServerAppSettings {

0 commit comments

Comments
 (0)