File tree 2 files changed +0
-12
lines changed 2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,6 @@ export class CollectionReference<T = DocumentData> extends Query<T> {
53
53
get path(): string ;
54
54
// (undocumented)
55
55
readonly type = " collection" ;
56
- withConverter(converter : null ): CollectionReference <DocumentData >;
57
- // (undocumented)
58
56
withConverter<U >(converter : FirestoreDataConverter <U >): CollectionReference <U >;
59
57
}
60
58
@@ -103,8 +101,6 @@ export class DocumentReference<T = DocumentData> {
103
101
get parent(): CollectionReference <T >;
104
102
get path(): string ;
105
103
readonly type = " document" ;
106
- withConverter(converter : null ): DocumentReference <DocumentData >;
107
- // (undocumented)
108
104
withConverter<U >(converter : FirestoreDataConverter <U >): DocumentReference <U >;
109
105
}
110
106
@@ -322,8 +318,6 @@ export class Query<T = DocumentData> {
322
318
protected constructor ();
323
319
readonly firestore: FirebaseFirestore ;
324
320
readonly type: ' query' | ' collection' ;
325
- withConverter(converter : null ): Query <DocumentData >;
326
- // (undocumented)
327
321
withConverter<U >(converter : FirestoreDataConverter <U >): Query <U >;
328
322
}
329
323
Original file line number Diff line number Diff line change @@ -47,8 +47,6 @@ export class CollectionReference<T = DocumentData> extends Query<T> {
47
47
get path(): string ;
48
48
// (undocumented)
49
49
readonly type = " collection" ;
50
- withConverter(converter : null ): CollectionReference <DocumentData >;
51
- // (undocumented)
52
50
withConverter<U >(converter : FirestoreDataConverter <U >): CollectionReference <U >;
53
51
}
54
52
@@ -83,8 +81,6 @@ export class DocumentReference<T = DocumentData> {
83
81
get parent(): CollectionReference <T >;
84
82
get path(): string ;
85
83
readonly type = " document" ;
86
- withConverter(converter : null ): DocumentReference <DocumentData >;
87
- // (undocumented)
88
84
withConverter<U >(converter : FirestoreDataConverter <U >): DocumentReference <U >;
89
85
}
90
86
@@ -199,8 +195,6 @@ export class Query<T = DocumentData> {
199
195
protected constructor ();
200
196
readonly firestore: FirebaseFirestore ;
201
197
readonly type: ' query' | ' collection' ;
202
- withConverter(converter : null ): Query <DocumentData >;
203
- // (undocumented)
204
198
withConverter<U >(converter : FirestoreDataConverter <U >): Query <U >;
205
199
}
206
200
You can’t perform that action at this time.
0 commit comments