UNPKG

antd-mobile-rn

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

19 lines (18 loc) 605 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { ResultPropsType } from './PropsType'; import { IResultStyle } from './style/index.native'; export interface ResultNativeProps extends ResultPropsType { styles?: IResultStyle; style?: StyleProp<ViewStyle>; } export default class Result extends React.Component<ResultNativeProps, any> { static defaultProps: { styles: { [x: string]: import("react-native").RegisteredStyle<any>; }; buttonType: string; buttonClick: () => void; }; render(): JSX.Element; }