2021-05-28 11:34:40 +08:00
|
|
|
export declare class CoolDownTime {
|
|
|
|
IsCoolDownTime: boolean;
|
|
|
|
ExecFunc: Function;
|
|
|
|
TimerId: any;
|
|
|
|
constructor();
|
|
|
|
CoolDown(time: number): void;
|
2023-05-08 10:53:13 +08:00
|
|
|
Debounce(f: Function, time: number): void;
|
2021-05-28 11:34:40 +08:00
|
|
|
Clear(): void;
|
|
|
|
Exec(f: Function): void;
|
|
|
|
}
|
|
|
|
//# sourceMappingURL=CoolDownTime.d.ts.map
|