Package-level declarations

Types

Link copied to clipboard
sealed interface CountDownTimerState : TimerState
Link copied to clipboard
sealed interface CountUpTimerState : TimerState
Link copied to clipboard
class PausedCountDownTimerState(remainingTime: Duration, val title: String, val timerID: Int) : PausedTimerState, CountDownTimerState
Link copied to clipboard
class PausedCountUpTimerState(elapsedTime: Duration, val title: String, val timerID: Int) : PausedTimerState, CountUpTimerState
Link copied to clipboard
sealed interface PausedTimerState : TimerState
Link copied to clipboard
class StartedCountDownTimerState(priorRemainingTime: Duration, startedTime: Instant, val title: String, val timerID: Int) : StartedTimerState, CountDownTimerState
Link copied to clipboard
class StartedCountUpTimerState(priorElapsedTime: Duration, startedTime: Instant, val title: String, val timerID: Int) : StartedTimerState, CountUpTimerState
Link copied to clipboard
sealed interface StartedTimerState : TimerState
Link copied to clipboard
sealed interface TimerState