9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
/// <reference types="wx" />
|
|
declare function emit(key: TODO): void;
|
|
declare function wait(key: TODO, callback: Function): void;
|
|
declare const _default: {
|
|
wait: typeof wait;
|
|
emit: typeof emit;
|
|
};
|
|
export default _default;
|