mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
17 lines
430 B
TypeScript
17 lines
430 B
TypeScript
interface NotifyOptions {
|
|
type?: 'primary' | 'success' | 'danger' | 'warning';
|
|
color?: string;
|
|
zIndex?: number;
|
|
message: string;
|
|
context?: any;
|
|
duration?: number;
|
|
selector?: string;
|
|
background?: string;
|
|
safeAreaInsetTop?: boolean;
|
|
onClick?: () => void;
|
|
onOpened?: () => void;
|
|
onClose?: () => void;
|
|
}
|
|
export default function Notify(options: NotifyOptions | string): void;
|
|
export {};
|