| 15 | } |
| 16 | |
| 17 | interface WorkerFinishedMessage extends ScanMessage { |
| 18 | error?: { |
| 19 | message?: string |
| 20 | } |
| 21 | scan?: AppScanSnapshot |
| 22 | status: 'finished' |
| 23 | } |
| 24 | |
| 25 | function toArrayBuffer ( value: ArrayBuffer | ArrayBufferView ) { |
| 26 | if ( value instanceof ArrayBuffer ) { |
nothing calls this directly
no outgoing calls
no test coverage detected