WechatOwnerService/node_modules/vant-weapp/dist/notify/notify.d.ts
2021-06-06 23:15:16 +08:00

13 lines
296 B
TypeScript
Executable File

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 {};