()
| 22 | endTime?: number, |
| 23 | ): string { |
| 24 | const get = () => |
| 25 | formatDuration(Math.max(0, (endTime ?? Date.now()) - startTime - pausedMs)) |
| 26 | |
| 27 | const subscribe = useCallback( |
| 28 | (notify: () => void) => { |
nothing calls this directly
no test coverage detected