Skip to content

Commit 819c5d0

Browse files
committed
fix lint
1 parent 21d2c10 commit 819c5d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/v2/providers/database.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export interface RawRTDBCloudEvent extends CloudEvent<RawRTDBCloudEventData> {
6464
ref: string;
6565
location: string;
6666
authtype: AuthType;
67-
authid?: string;
67+
authid?: string;
6868
}
6969

7070
/**
@@ -94,7 +94,7 @@ export interface DatabaseEvent<T, Params = Record<string, string>> extends Cloud
9494
/**
9595
* The type of principal that triggered the event.
9696
*/
97-
authtype: AuthType
97+
authtype: AuthType;
9898
/**
9999
* The unique identifier of the principal.
100100
*/
@@ -404,7 +404,7 @@ function makeDatabaseEvent<Params>(
404404
data: snapshot,
405405
params,
406406
authtype: event.authtype,
407-
authid: event.authid
407+
authid: event.authid,
408408
};
409409
delete (databaseEvent as any).firebasedatabasehost;
410410
return databaseEvent;

0 commit comments

Comments
 (0)