| 3 | import type { MessageSender } from '../messages'; |
| 4 | |
| 5 | export interface PreviewEvents { |
| 6 | 'preview/get/info': [ |
| 7 | { |
| 8 | port?: number; |
| 9 | sourceShellId?: string; |
| 10 | }, |
| 11 | PreviewInfo |
| 12 | ]; |
| 13 | } |
| 14 | |
| 15 | const TIMEOUT = 20_000; |
| 16 |
nothing calls this directly
no outgoing calls
no test coverage detected