Skip to content

Commit 31b6e42

Browse files
committed
yarn docgen devsite
1 parent 5d6cf7c commit 31b6e42

8 files changed

+12
-12
lines changed

common/api-review/firestore-lite.api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class CollectionReference<AppModelType = DocumentData, DbModelType extend
8686
get parent(): DocumentReference<DocumentData, DocumentData> | null;
8787
get path(): string;
8888
readonly type = "collection";
89-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): CollectionReference<NewAppModelType, NewDbModelType>;
89+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): CollectionReference<NewAppModelType, NewDbModelType>;
9090
withConverter(converter: null): CollectionReference<DocumentData, DocumentData>;
9191
}
9292

@@ -126,7 +126,7 @@ export class DocumentReference<AppModelType = DocumentData, DbModelType extends
126126
get parent(): CollectionReference<AppModelType, DbModelType>;
127127
get path(): string;
128128
readonly type = "document";
129-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): DocumentReference<NewAppModelType, NewDbModelType>;
129+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): DocumentReference<NewAppModelType, NewDbModelType>;
130130
withConverter(converter: null): DocumentReference<DocumentData, DocumentData>;
131131
}
132132

@@ -270,7 +270,7 @@ export class Query<AppModelType = DocumentData, DbModelType extends DocumentData
270270
readonly firestore: Firestore;
271271
readonly type: 'query' | 'collection';
272272
withConverter(converter: null): Query<DocumentData, DocumentData>;
273-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): Query<NewAppModelType, NewDbModelType>;
273+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): Query<NewAppModelType, NewDbModelType>;
274274
}
275275

276276
// @public

common/api-review/firestore.api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export class CollectionReference<AppModelType = DocumentData, DbModelType extend
9292
get parent(): DocumentReference<DocumentData, DocumentData> | null;
9393
get path(): string;
9494
readonly type = "collection";
95-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): CollectionReference<NewAppModelType, NewDbModelType>;
95+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): CollectionReference<NewAppModelType, NewDbModelType>;
9696
withConverter(converter: null): CollectionReference<DocumentData, DocumentData>;
9797
}
9898

@@ -152,7 +152,7 @@ export class DocumentReference<AppModelType = DocumentData, DbModelType extends
152152
get parent(): CollectionReference<AppModelType, DbModelType>;
153153
get path(): string;
154154
readonly type = "document";
155-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): DocumentReference<NewAppModelType, NewDbModelType>;
155+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): DocumentReference<NewAppModelType, NewDbModelType>;
156156
withConverter(converter: null): DocumentReference<DocumentData, DocumentData>;
157157
}
158158

@@ -525,7 +525,7 @@ export class Query<AppModelType = DocumentData, DbModelType extends DocumentData
525525
readonly firestore: Firestore;
526526
readonly type: 'query' | 'collection';
527527
withConverter(converter: null): Query<DocumentData, DocumentData>;
528-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): Query<NewAppModelType, NewDbModelType>;
528+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): Query<NewAppModelType, NewDbModelType>;
529529
}
530530

531531
// @public

docs-devsite/firestore_.collectionreference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Applies a custom data converter to this `CollectionReference`<!-- -->, allowing
8282
<b>Signature:</b>
8383
8484
```typescript
85-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): CollectionReference<NewAppModelType, NewDbModelType>;
85+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): CollectionReference<NewAppModelType, NewDbModelType>;
8686
```
8787
8888
### Parameters

docs-devsite/firestore_.documentreference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Applies a custom data converter to this `DocumentReference`<!-- -->, allowing yo
103103
<b>Signature:</b>
104104

105105
```typescript
106-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): DocumentReference<NewAppModelType, NewDbModelType>;
106+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): DocumentReference<NewAppModelType, NewDbModelType>;
107107
```
108108

109109
### Parameters

docs-devsite/firestore_.query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Applies a custom data converter to this query, allowing you to use your own cust
108108
<b>Signature:</b>
109109

110110
```typescript
111-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): Query<NewAppModelType, NewDbModelType>;
111+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): Query<NewAppModelType, NewDbModelType>;
112112
```
113113

114114
### Parameters

docs-devsite/firestore_lite.collectionreference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Applies a custom data converter to this `CollectionReference`<!-- -->, allowing
8282
<b>Signature:</b>
8383
8484
```typescript
85-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): CollectionReference<NewAppModelType, NewDbModelType>;
85+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): CollectionReference<NewAppModelType, NewDbModelType>;
8686
```
8787
8888
### Parameters

docs-devsite/firestore_lite.documentreference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Applies a custom data converter to this `DocumentReference`<!-- -->, allowing yo
103103
<b>Signature:</b>
104104

105105
```typescript
106-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): DocumentReference<NewAppModelType, NewDbModelType>;
106+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): DocumentReference<NewAppModelType, NewDbModelType>;
107107
```
108108

109109
### Parameters

docs-devsite/firestore_lite.query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Applies a custom data converter to this query, allowing you to use your own cust
108108
<b>Signature:</b>
109109

110110
```typescript
111-
withConverter<NewAppModelType, NewDbModelType extends DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): Query<NewAppModelType, NewDbModelType>;
111+
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): Query<NewAppModelType, NewDbModelType>;
112112
```
113113

114114
### Parameters

0 commit comments

Comments
 (0)