import { definePlugin, promisify } from '../../utils';
function hideLoading(options) {
options = Object.assign({ noConflict: true }, options);
return promisify(wx.hideLoading)(options);
}
export const hideLoadingPlugin = definePlugin((col) => {
;
col['hideLoading'] = hideLoading;
});