@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
11 lines (10 loc) • 412 B
TypeScript
import React from 'react';
import { StyleProp, TextProps, TextStyle, ViewProps, ViewStyle } from 'react-native';
export interface ViewInterface extends ViewProps, TextProps {
children?: React.ReactNode | React.ReactText;
style?: StyleProp<ViewStyle> | StyleProp<TextStyle>;
}
declare class AntmView extends React.PureComponent<ViewInterface> {
render(): React.JSX.Element;
}
export default AntmView;