mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
13 lines
296 B
TypeScript
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 {};
|