Type Alias: PomodoroSettings
type PomodoroSettings = { longBreakDuration: number; sessionsUntilLongBreak: number; shortBreakDuration: number; workDuration: number;};Defined in: packages/db/src/entities/work/time-tracker/pomodoro.types.ts:22
Pomodoro settings configuration Can be used as global defaults or per-timer session overrides
Properties
Section titled “Properties”longBreakDuration
Section titled “longBreakDuration”longBreakDuration: number;Defined in: packages/db/src/entities/work/time-tracker/pomodoro.types.ts:28
Duration of long break in minutes (for reference/future use)
sessionsUntilLongBreak
Section titled “sessionsUntilLongBreak”sessionsUntilLongBreak: number;Defined in: packages/db/src/entities/work/time-tracker/pomodoro.types.ts:30
Number of work sessions before a long break
shortBreakDuration
Section titled “shortBreakDuration”shortBreakDuration: number;Defined in: packages/db/src/entities/work/time-tracker/pomodoro.types.ts:26
Duration of short break in minutes
workDuration
Section titled “workDuration”workDuration: number;Defined in: packages/db/src/entities/work/time-tracker/pomodoro.types.ts:24
Duration of work phase in minutes