Skip to content

State

Defined in: src/enums/State.ts:4

Enumerates the possible states of a TaskTimer.

IDLE: "idle"

Defined in: src/enums/State.ts:9

Timer is idle. This is the initial state when a TaskTimer is first created, and the state after it is reset.


RUNNING: "running"

Defined in: src/enums/State.ts:13

Timer is running, e.g. after it is started or resumed.


PAUSED: "paused"

Defined in: src/enums/State.ts:17

Timer is paused.


STOPPED: "stopped"

Defined in: src/enums/State.ts:21

Timer is stopped.