import { Dispatch } from 'redux'; import { ProviderType } from '@dcl/schemas/dist/dapps/provider-type'; import { SignInProps } from 'decentraland-ui/dist/components/SignIn/SignIn'; import { OpenModalAction, openModal } from '../../modules/modal/actions'; export type SignInPageProps = Omit & { onConnect: () => void | ReturnType; handleLoginConnect?: (providerType: ProviderType) => any; hasTranslations?: boolean; }; export type MapStateProps = Pick; export type MapDispatchProps = Pick; export type MapDispatch = Dispatch;