7 lines
130 B
TypeScript
7 lines
130 B
TypeScript
import { ViewStyle } from 'react-native';
|
|
|
|
export interface WrapperProps {
|
|
style?: ViewStyle;
|
|
onAuthenticated?: () => void;
|
|
}
|