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

10 lines
252 B
TypeScript
Raw Normal View History

2021-07-27 19:36:17 +08:00
export declare class CoolDownTime {
IsCoolDownTime: boolean;
ExecFunc: Function;
TimerId: any;
constructor();
CoolDown(time: number): void;
Clear(): void;
Exec(f: Function): void;
}
//# sourceMappingURL=CoolDownTime.d.ts.map