| 21 | |
| 22 | // copied from cloudflare's definition. Use until this gets a better answer https://stackoverflow.com/q/75754724 |
| 23 | declare class DecompressionStream extends TransformStream< |
| 24 | ArrayBuffer | ArrayBufferView, |
| 25 | Uint8Array |
| 26 | > { |
| 27 | constructor(format: 'gzip' | 'deflate' | 'deflate-raw') |
| 28 | } |
| 29 | |
| 30 | async function getTarReader(blob: Blob) { |
| 31 | const decompressedStream = ( |
nothing calls this directly
no outgoing calls
no test coverage detected