UNPKG

react-web-native-sketch

Version:

[TODO: We need an overview of how this can be used via npm vs as a local package]

18 lines (17 loc) 545 B
/** * Created by alexbuicescu on 21 - Mar 2018. */ import { socialLogin } from '../../'; import { fbLoadSdk, fbSdkLoaded, fbStatusChangeCallback } from '../../redux/reducers/auth'; export interface Props { label?: string; checkLogin: () => boolean; referralCode?: string; } export interface ConnectedProps { fbSdkLoaded: typeof fbSdkLoaded; fbStatusChangeCallback: typeof fbStatusChangeCallback; fbLoadSdk: typeof fbLoadSdk; socialLogin: typeof socialLogin; } export declare type AllProps = Props & ConnectedProps;