Skip to content

Commit d8d1384

Browse files
authored
Update functions docs (#4320)
1 parent f68bd3f commit d8d1384

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/firebase/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1408,7 +1408,7 @@ declare namespace firebase.app {
14081408
*/
14091409
storage(url?: string): firebase.storage.Storage;
14101410
firestore(): firebase.firestore.Firestore;
1411-
functions(region?: string): firebase.functions.Functions;
1411+
functions(regionOrCustomDomain?: string): firebase.functions.Functions;
14121412
/**
14131413
* Gets the {@link firebase.performance.Performance `Performance`} service for the
14141414
* current app. If the current app is not the default one, throws an error.
@@ -9172,9 +9172,9 @@ declare namespace firebase.firestore {
91729172
* `exists` property will always be true and `data()` will never return
91739173
* 'undefined'.
91749174
*/
9175-
export class QueryDocumentSnapshot<T = DocumentData> extends DocumentSnapshot<
9176-
T
9177-
> {
9175+
export class QueryDocumentSnapshot<
9176+
T = DocumentData
9177+
> extends DocumentSnapshot<T> {
91789178
private constructor();
91799179

91809180
/**

0 commit comments

Comments
 (0)