react-web-native-sketch
Version:
[TODO: We need an overview of how this can be used via npm vs as a local package]
21 lines (20 loc) • 596 B
TypeScript
/**
* Created by alexbuicescu on 21 - Mar 2018.
*/
import { loadedGoogleSdk, loadGoogleSdk, socialLogin } from '../../redux/reducers/auth';
export interface Props {
approvalPrompt?: boolean;
autoLoad?: boolean;
checkLogin: () => boolean;
label?: string;
pathname?: string;
redirectUri?: string;
referralCode?: string;
}
export interface ConnectedProps {
googleSdkIsLoaded: boolean;
socialLogin: typeof socialLogin;
loadGoogleSdk: typeof loadGoogleSdk;
loadedGoogleSdk: typeof loadedGoogleSdk;
}
export declare type AllProps = Props & ConnectedProps;