(isSolved: boolean)
| 40 | |
| 41 | // TODO: Maybe this needs to be exported for clarity (instead of being used in updateProblem and updateStreak) |
| 42 | async function updateProblemSolvedState(isSolved: boolean) { |
| 43 | await storage.set("leetCodeProblemSolved", isSolved) |
| 44 | } |
| 45 | |
| 46 | export async function getLastCompletion() { |
| 47 | const lastCompletedString = await storage.get("lastCompleted") |
no outgoing calls
no test coverage detected