Skip to content

Commit 011c874

Browse files
committed
style: format
1 parent 38109c2 commit 011c874

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

packages/firestore/src/lite-api/reference.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,16 @@ export class Query<
159159
* @param converter - Converts objects to and from Firestore.
160160
* @returns A `Query` that uses the provided converter.
161161
*/
162-
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(
162+
withConverter<
163+
NewAppModelType,
164+
NewDbModelType extends DocumentData = DocumentData
165+
>(
163166
converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>
164167
): Query<NewAppModelType, NewDbModelType>;
165-
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(
168+
withConverter<
169+
NewAppModelType,
170+
NewDbModelType extends DocumentData = DocumentData
171+
>(
166172
converter: FirestoreDataConverter<NewAppModelType, NewDbModelType> | null
167173
): Query<NewAppModelType, NewDbModelType> {
168174
return new Query<NewAppModelType, NewDbModelType>(

0 commit comments

Comments
 (0)