antd-mobile
Version:
<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />
9 lines (8 loc) • 382 B
TypeScript
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;