Commit e45c0b6d authored by wildfirecode13's avatar wildfirecode13

1

parent 7d6613d8
This source diff could not be displayed because it is too large. You can view the blob instead.
import { EventEmitter } from "../event";
export declare class Timer extends EventEmitter<any> {
_running: boolean;
repeatCount: number;
delay: number;
currentCount: number;
_timer: number | undefined;
repeatCount: any;
delay: any;
currentCount: any;
_timer: any;
constructor(repeatCount: number, delay?: number);
start(): void;
_isPause: boolean;
......
......@@ -3,4 +3,4 @@ export declare const getDateTimer: () => number;
*
* @param ms
*/
export declare const wait: (ms: number) => Promise<unknown>;
export declare const wait: (ms: number) => Promise<void>;
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment