(problem: {
name: string
url: string
})
| 212 | } |
| 213 | |
| 214 | export const updateProblemState = async (problem: { |
| 215 | name: string |
| 216 | url: string |
| 217 | }) => { |
| 218 | await storage.updateProblem(problem, state.leetcodeProblemSolved) |
| 219 | } |
| 220 | |
| 221 | export const updateStorage = async () => { |
| 222 | try { |
no outgoing calls
no test coverage detected