UNPKG

@codelet/core

Version:
10 lines (9 loc) 301 B
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; });