nantai-erp-wechat-mobile/miniprogram_npm/vant-weapp/notify/notify.d.ts
2024-10-31 21:29:57 +08:00

13 lines
296 B
TypeScript

interface NotifyOptions {
text: string;
color?: string;
backgroundColor?: string;
duration?: number;
selector?: string;
context?: any;
safeAreaInsetTop?: boolean;
zIndex?: number;
}
export default function Notify(options: NotifyOptions | string): void;
export {};