| 1 | import { useState, useEffect, useRef } from 'react' |
| 2 | |
| 3 | interface PythonSetupProps { |
| 4 | onReady: () => void |
| 5 | } |
| 6 | |
| 7 | interface SetupProgress { |
| 8 | status: 'downloading' | 'extracting' | 'complete' | 'error' |
nothing calls this directly
no outgoing calls
no test coverage detected