File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
packages/firestore/src/lite-api Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -159,10 +159,16 @@ export class Query<
159
159
* @param converter - Converts objects to and from Firestore.
160
160
* @returns A `Query` that uses the provided converter.
161
161
*/
162
- withConverter < NewAppModelType , NewDbModelType extends DocumentData = DocumentData > (
162
+ withConverter <
163
+ NewAppModelType ,
164
+ NewDbModelType extends DocumentData = DocumentData
165
+ > (
163
166
converter : FirestoreDataConverter < NewAppModelType , NewDbModelType >
164
167
) : Query < NewAppModelType , NewDbModelType > ;
165
- withConverter < NewAppModelType , NewDbModelType extends DocumentData = DocumentData > (
168
+ withConverter <
169
+ NewAppModelType ,
170
+ NewDbModelType extends DocumentData = DocumentData
171
+ > (
166
172
converter : FirestoreDataConverter < NewAppModelType , NewDbModelType > | null
167
173
) : Query < NewAppModelType , NewDbModelType > {
168
174
return new Query < NewAppModelType , NewDbModelType > (
You can’t perform that action at this time.
0 commit comments