Skip to content

Commit

Permalink
PR Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-andersen committed Sep 21, 2023
1 parent 4eefcf1 commit 733fd40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dev/src/reference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1349,10 +1349,10 @@ export class QueryOptions<
);
}

withConverter<AppModelType, DbModelType extends firestore.DocumentData>(
converter: firestore.FirestoreDataConverter<AppModelType, DbModelType>
): QueryOptions<AppModelType, DbModelType> {
return new QueryOptions<AppModelType, DbModelType>(
withConverter<NewAppModelType, NewDbModelType extends firestore.DocumentData>(
converter: firestore.FirestoreDataConverter<NewAppModelType, NewDbModelType>
): QueryOptions<NewAppModelType, NewDbModelType> {
return new QueryOptions<NewAppModelType, NewDbModelType>(
this.parentPath,
this.collectionId,
converter,
Expand Down

0 comments on commit 733fd40

Please sign in to comment.