| 31 | const CHUNK_ACK_WINDOW = 4; |
| 32 | |
| 33 | interface ProgressMessage { |
| 34 | type: 'progress'; |
| 35 | progress: LoadProgress; |
| 36 | } |
| 37 | |
| 38 | const port = parentPort; |
| 39 | const canUseProcessChannel = typeof process.send === 'function'; |
nothing calls this directly
no outgoing calls
no test coverage detected