| 5 | import { BunContext, BunRuntime } from '@effect/platform-bun'; |
| 6 | |
| 7 | interface CodeBlock { |
| 8 | readonly code: string; |
| 9 | readonly file: string; |
| 10 | readonly line: number; |
| 11 | readonly index: number; |
| 12 | } |
| 13 | |
| 14 | interface ValidationError { |
| 15 | readonly file: string; |
nothing calls this directly
no outgoing calls
no test coverage detected