UNPKG

antd-mobile-taro-ui

Version:

以antd-mobile为设计标准,基于taro框架的微信小程序组件库

10 lines (9 loc) 343 B
import { FC, ReactNode } from 'react'; import { NativeProps } from 'antd-mobile/es/utils/native-props'; export declare type ResultProps = { status?: 'success' | 'error' | 'info' | 'waiting' | 'warning'; title: ReactNode; description?: ReactNode; icon?: ReactNode; } & NativeProps; export declare const Result: FC<ResultProps>;