Newer
Older
HydrantApplet / miniprogram / miniprogram_npm / vant-weapp / notify / notify.d.ts
zhout on 4 Mar 2021 296 bytes first commit
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 {};