Skip to content

Commit 7e91656

Browse files
ci: Fix build issue b/315204283 (#1954)
Fixes a type inference issue that appeared in the tests with a recent version of TypeScript. Fixes b/315204283 🦕
1 parent 4776848 commit 7e91656

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/test/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ describe('FirestoreTypeConverter', () => {
8686
stringProperty: string;
8787
numberProperty: number;
8888
}
89-
const converter = {
89+
const converter: FirestoreDataConverter<MyModelType, DocumentData> = {
9090
toFirestore(
9191
modelObject: PartialWithFieldValue<MyModelType>,
9292
options?: SetOptions

0 commit comments

Comments
 (0)