We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e14d16 commit f529604Copy full SHA for f529604
1 file changed
Classes/Timer.ts
@@ -15,14 +15,15 @@ export default class Timer {
15
callback: Function;
16
/** Whether or not the timer is running. */
17
started: boolean;
18
- /** @type {boolean} */
+ /** Whether or not the timer is stopped. */
19
stopped: boolean;
20
/** Internal timer object. */
21
timer: NodeJS.Timeout | null;
22
- /** @type {number|null} */
+ /** Start tick. */
23
startTick: number | null;
24
+ /** End tick. */
25
endTick: number | null;
26
+
27
/**
28
* @param duration - Timer duration in milliseconds.
29
* @param attributes - Timer attributes.
0 commit comments