(inStream: ReadableStream, outStream: WritableStream)
| 221 | } |
| 222 | |
| 223 | decryptStream(inStream: ReadableStream, outStream: WritableStream) { |
| 224 | this.worker.postMessage({ |
| 225 | type: 'decryptStream', |
| 226 | in: inStream, |
| 227 | out: outStream, |
| 228 | }) |
| 229 | } |
| 230 | |
| 231 | handleOutgoingEvents(onMessage: (data: string) => void) { |
| 232 | this.worker.addEventListener('message', (event) => { |
nothing calls this directly
no outgoing calls
no test coverage detected