vant-weapp/dist/notify/notify.d.ts
2019-04-03 10:21:53 +08:00

12 lines
281 B
TypeScript

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