Files
weRequest/build/util/loading.d.ts
2018-12-21 17:28:46 +08:00

8 lines
183 B
TypeScript

declare function show(txt: boolean | string): void;
declare function hide(): void;
declare const _default: {
show: typeof show;
hide: typeof hide;
};
export default _default;