UNPKG

@pluve/ace

Version:

一套React版本的 Taro UI 组件库

11 lines (10 loc) 234 B
import { FC } from 'react'; interface IToastProps { text?: string; hasMask?: boolean; image?: string; isOpened?: boolean; className?: string; } declare const Toast: FC<IToastProps>; export default Toast;