1 | import Taro from '@tarojs/api';
|
2 | declare const showToast: typeof Taro.showToast;
|
3 | declare const hideToast: typeof Taro.hideToast;
|
4 | declare const showLoading: typeof Taro.showLoading;
|
5 | declare const hideLoading: typeof Taro.hideLoading;
|
6 | declare const showModal: typeof Taro.showModal;
|
7 | declare const showActionSheet: (options?: Taro.showActionSheet.Option, methodName?: string) => Promise<Taro.showActionSheet.SuccessCallbackResult>;
|
8 | declare const enableAlertBeforeUnload: (option?: {}, ...args: any[]) => Promise<Partial<TaroGeneral.CallbackResult> & Record<string, unknown> & TaroGeneral.CallbackResult>;
|
9 | declare const disableAlertBeforeUnload: (option?: {}, ...args: any[]) => Promise<Partial<TaroGeneral.CallbackResult> & Record<string, unknown> & TaroGeneral.CallbackResult>;
|
10 | export { disableAlertBeforeUnload, enableAlertBeforeUnload, hideLoading, hideToast, showActionSheet, showLoading, showModal, showToast };
|