(id: string)
| 12 | |
| 13 | export interface IStorage { |
| 14 | getChallenge(id: string): Promise<Challenge | undefined>; |
| 15 | createChallenge(challenge: InsertChallenge): Promise<Challenge>; |
| 16 | updateChallengeSolves(id: string, solves: number): Promise<void>; |
| 17 |
no outgoing calls
no test coverage detected