UNPKG

antd-mobile-taro-ui

Version:

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

9 lines (8 loc) 382 B
import { ToastProps } from './toast'; export declare type ToastShowProps = Omit<ToastProps, 'visible'>; export declare type ToastHandler = { close: () => void; }; export declare function show(p: ToastShowProps | string): ToastHandler; export declare function clear(): void; export declare function config(val: Pick<ToastProps, 'duration' | 'position' | 'maskClickable'>): void;