Skip to content

Commit 416850e

Browse files
author
Brian Chen
committed
Merge branch 'bc/types' of github.com:firebase/firebase-js-sdk into bc/types
2 parents f9d4b3e + a8123d8 commit 416850e

File tree

2 files changed

+521
-521
lines changed

2 files changed

+521
-521
lines changed

common/api-review/firestore-lite.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ export function orderBy(fieldPath: string | FieldPath, directionStr?: OrderByDir
199199
export type OrderByDirection = 'desc' | 'asc';
200200

201201
// @public
202-
export type PartialWithFieldValue<T> = T extends Primitive ? T : T extends Map<infer K, infer V> ? Map<PartialWithFieldValue<K>, PartialWithFieldValue<V>> : T extends {} ? {
202+
export type PartialWithFieldValue<T> = T extends Primitive ? T : T extends {} ? {
203203
[K in keyof T]?: PartialWithFieldValue<T[K]> | FieldValue;
204204
} : Partial<T>;
205205

0 commit comments

Comments
 (0)