Merge pull request #783 from danielw93/master
[typings][typescript]: fix stupid typo that breaks tsc compilation
This commit is contained in:
commit
f6ff56289c
|
@ -643,7 +643,7 @@ declare module "react-native-firebase" {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 3rd party provider Credentials */
|
/** 3rd party provider Credentials */
|
||||||
type AuthCredential {
|
type AuthCredential = {
|
||||||
providerId: string,
|
providerId: string,
|
||||||
token: string,
|
token: string,
|
||||||
secret: string
|
secret: string
|
||||||
|
@ -1034,7 +1034,7 @@ declare module "react-native-firebase" {
|
||||||
*/
|
*/
|
||||||
onLink(listener: (url) => void): () => void;
|
onLink(listener: (url) => void): () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Configuration when creating a Dynamic Link (standard or short). For
|
* Configuration when creating a Dynamic Link (standard or short). For
|
||||||
* more information about each parameter, see the official Firebase docs:
|
* more information about each parameter, see the official Firebase docs:
|
||||||
|
|
Loading…
Reference in New Issue