UNPKG

rn-verto-typescript

Version:

Verto Free Switch with React Native Type Script

13 lines (12 loc) 284 B
/// <reference types="react" /> export interface AuthPrams { url: string; login: string; password: string; } interface Props { authParams: AuthPrams; onLoginHandler: Function; } declare const LoginScreen: (props: Props) => JSX.Element; export default LoginScreen;