UNPKG

@pluve/ace

Version:

一套React版本的 Taro UI 组件库

14 lines (13 loc) 381 B
import { FC } from 'react'; import { ButtonProps } from '@tarojs/components/types/Button'; interface IResultProps { className?: string; imageUrl?: string; title?: string; message?: string; buttonText?: string; buttonType?: keyof ButtonProps.type; onButtonClick?: () => void; } declare const Result: FC<IResultProps>; export default Result;