| 9 | } |
| 10 | |
| 11 | export interface ChallengeFile extends IncompleteChallengeFile { |
| 12 | editableRegionBoundaries?: number[]; |
| 13 | editableContents?: string; |
| 14 | usesMultifileEditor?: boolean; |
| 15 | error?: unknown; |
| 16 | seed?: string; |
| 17 | source?: string; |
| 18 | path: string; |
| 19 | history: string[]; |
| 20 | } |
| 21 | |
| 22 | type PolyProps = { |
| 23 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected