Skip to content

Commit 7f2df62

Browse files
committed
Mark UserMetadata::lastRefreshTime as optional.
While it's always present (even if null), having it optional allows existing code that implements this interface to not break. Fixes: #880
1 parent f3a4d84 commit 7f2df62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/auth.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export namespace admin.auth {
2424
* formatted as a UTC Date string (eg 'Sat, 03 Feb 2001 04:05:06 GMT').
2525
* Returns null if the user was never active.
2626
*/
27-
lastRefreshTime: string|null;
27+
lastRefreshTime?: string|null;
2828

2929
/**
3030
* @return A JSON-serializable representation of this object.

0 commit comments

Comments
 (0)