| 150 | * @module |
| 151 | */ |
| 152 | export class Base32DecoderStream<T extends "string" | "bytes"> |
| 153 | extends TransformStream< |
| 154 | T extends "bytes" ? Uint8Array_ : string, |
| 155 | Uint8Array_ |
nothing calls this directly
no outgoing calls
no test coverage detected