2
0
mirror of synced 2025-01-11 14:44:12 +00:00
2017-03-17 23:40:12 +00:00

24 lines
445 B
JavaScript

/* eslint-disable */
declare module 'react-native' {
// noinspection ES6ConvertVarToLetConst
declare var exports: any;
}
declare type AuthResultType = {
authenticated: boolean,
user: Object|null
} | null;
declare type CredentialType = {
provider: string,
token: string,
secret: string
};
declare type GoogleApiAvailabilityType = {
status: number,
isAvailable: boolean,
isUserResolvableError?: boolean,
error?: string
};