| 3 | import { fetchCount } from class="st">'./counterAPI'; |
| 4 | |
| 5 | export interface CounterState { |
| 6 | value: number; |
| 7 | status: class="st">'idle' | class="st">'loading' | class="st">'failed'; |
| 8 | } |
| 9 | |
| 10 | const initialState: CounterState = { |
| 11 | value: 0, |
nothing calls this directly
no outgoing calls
no test coverage detected