webcad-ue4-api/types/Common/CoolDownTime.d.ts

11 lines
299 B
TypeScript
Raw Normal View History

2022-02-16 11:15:31 +08:00
export declare class CoolDownTime {
IsCoolDownTime: boolean;
ExecFunc: Function;
TimerId: any;
constructor();
CoolDown(time: number): void;
Debounce(f: Function, time: number): void;
Clear(): void;
Exec(f: Function): void;
}
//# sourceMappingURL=CoolDownTime.d.ts.map