| 2 | import { InfoBarSettings } from "./info-bar-settings"; |
| 3 | |
| 4 | interface EmulatorInfoProps { |
| 5 | toggleInfo: () => void; |
| 6 | emulator: any; |
| 7 | hidden: boolean; |
| 8 | settings: InfoBarSettings; |
| 9 | } |
| 10 | |
| 11 | interface EmulatorInfoState { |
| 12 | cpu: number; |
nothing calls this directly
no outgoing calls
no test coverage detected