artwork-react-native
Version:
artwork design master for react-native
14 lines (13 loc) • 388 B
TypeScript
/// <reference types="react" />
import React from 'react';
import { FlexProps as BasePropsType } from './PropsType';
export interface FlexProps extends BasePropsType {
onPress?: (e?: any) => void;
onLongPress?: any;
onPressIn?: any;
onPressOut?: any;
}
export default class Flex extends React.Component<FlexProps, any> {
static Item: any;
render(): JSX.Element;
}