Files
weRequest/build/util/loading.d.ts

8 lines
183 B
TypeScript
Raw Normal View History

2018-12-21 17:28:46 +08:00
declare function show(txt: boolean | string): void;
declare function hide(): void;
declare const _default: {
show: typeof show;
hide: typeof hide;
};
export default _default;