| 22 | } |
| 23 | |
| 24 | interface Body { |
| 25 | id: string; |
| 26 | files?: File[]; |
| 27 | challengeType: number; |
| 28 | } |
| 29 | |
| 30 | const encodeBase64 = (str: string) => { |
| 31 | const bytes = new TextEncoder().encode(str); |
nothing calls this directly
no outgoing calls
no test coverage detected