(id: string, solves: number)
| 14 | getChallenge(id: string): Promise<Challenge | undefined>; |
| 15 | createChallenge(challenge: InsertChallenge): Promise<Challenge>; |
| 16 | updateChallengeSolves(id: string, solves: number): Promise<void>; |
| 17 | |
| 18 | getHintsByChallenge(challengeId: string): Promise<Hint[]>; |
| 19 | createHint(hint: InsertHint): Promise<Hint>; |
no outgoing calls
no test coverage detected