@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
12 lines (11 loc) • 456 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
import { WithThemeStyles } from '../style';
import { ResultPropsType } from './PropsType';
import { ResultStyle } from './style/index';
export interface ResultNativeProps extends ResultPropsType, WithThemeStyles<ResultStyle> {
style?: StyleProp<ViewStyle>;
}
export default class Result extends React.Component<ResultNativeProps, any> {
render(): React.JSX.Element;
}