Skip to content

Commit dead3b5

Browse files
Add contains
1 parent 3c9c4d2 commit dead3b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firestore/src/api/database.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2622,7 +2622,7 @@ function applyFirestoreDataConverter<T>(
26222622
return [convertedValue, functionName];
26232623
}
26242624

2625-
function contains<V>(obj: Dict<V>, key: string): boolean {
2625+
function contains(obj: Dict<unknown>, key: string): boolean {
26262626
return Object.prototype.hasOwnProperty.call(obj, key);
26272627
}
26282628

0 commit comments

Comments
 (0)