abb-core
Version:
Application Build Butler Core
15 lines (14 loc) • 436 B
TypeScript
import { StyleProp, ViewStyle } from "react-native";
export interface IABBContainer {
/**
* @type StyleProp<ViewStyle>
* @description Props for Native Style API
*/
style?: StyleProp<ViewStyle>;
}
export interface IABBContainerStateToProps {
}
export interface IABBContainerConnectedReduxStateProps extends IABBContainer, IABBContainerStateToProps {
}
export interface IABBContainerProps extends IABBContainer {
}