reactnativecomponents
Version:
React Native Components
17 lines (16 loc) • 476 B
TypeScript
/**
* @author 田尘殇Sean(sean.snow@live.com) create at 2017/11/4
*/
import { ViewProperties } from 'react-native';
import { EmptyFunction } from '../Global';
export default interface Props extends ViewProperties {
activeOpacity?: number;
autoHardwareBackPress?: boolean;
hideAnimation?: any;
loadingDialog?: boolean;
loadingProps?: any;
showAnimation?: any;
statusBarAutoHidden?: boolean;
visible?: boolean;
onPress?: EmptyFunction;
}