| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 | 
							- /// <reference types="miniprogram-api-typings" />
 
- declare type ToastMessage = string | number;
 
- interface ToastOptions {
 
-   show?: boolean;
 
-   type?: string;
 
-   mask?: boolean;
 
-   zIndex?: number;
 
-   context?:
 
-     | WechatMiniprogram.Component.TrivialInstance
 
-     | WechatMiniprogram.Page.TrivialInstance;
 
-   position?: string;
 
-   duration?: number;
 
-   selector?: string;
 
-   forbidClick?: boolean;
 
-   loadingType?: string;
 
-   message?: ToastMessage;
 
-   onClose?: () => void;
 
- }
 
- declare function Toast(
 
-   toastOptions: ToastOptions | ToastMessage
 
- ):
 
-   | WechatMiniprogram.Component.Instance<
 
-       Record<string, any>,
 
-       Record<string, any>,
 
-       Record<string, any>,
 
-       Record<string, any>,
 
-       false
 
-     >
 
-   | undefined;
 
- declare namespace Toast {
 
-   var loading: (
 
-     options: string | number | ToastOptions
 
-   ) =>
 
-     | WechatMiniprogram.Component.Instance<
 
-         Record<string, any>,
 
-         Record<string, any>,
 
-         Record<string, any>,
 
-         Record<string, any>,
 
-         false
 
-       >
 
-     | undefined;
 
-   var success: (
 
-     options: string | number | ToastOptions
 
-   ) =>
 
-     | WechatMiniprogram.Component.Instance<
 
-         Record<string, any>,
 
-         Record<string, any>,
 
-         Record<string, any>,
 
-         Record<string, any>,
 
-         false
 
-       >
 
-     | undefined;
 
-   var fail: (
 
-     options: string | number | ToastOptions
 
-   ) =>
 
-     | WechatMiniprogram.Component.Instance<
 
-         Record<string, any>,
 
-         Record<string, any>,
 
-         Record<string, any>,
 
-         Record<string, any>,
 
-         false
 
-       >
 
-     | undefined;
 
-   var clear: () => void;
 
-   var setDefaultOptions: (options: ToastOptions) => void;
 
-   var resetDefaultOptions: () => void;
 
- }
 
- export default Toast;
 
 
  |