mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-01-12 22:50:20 +08:00
24 lines
438 B
JavaScript
24 lines
438 B
JavaScript
/* eslint-disable */
|
|
declare module 'react-native' {
|
|
// noinspection ES6ConvertVarToLetConst
|
|
declare var exports: any;
|
|
}
|
|
|
|
declare type AuthResultType = {
|
|
authenticated: boolean,
|
|
user: Object|null
|
|
};
|
|
|
|
declare type CredentialType = {
|
|
provider: string,
|
|
token: string,
|
|
secret: string
|
|
};
|
|
|
|
declare type GoogleApiAvailabilityType = {
|
|
status: number,
|
|
isAvailable: boolean,
|
|
isUserResolvableError?: boolean,
|
|
error?: string
|
|
};
|