/// import { TarParserChunk } from './TarParser'; /** * Breaks up the stream into chunks of 512 bytes. */ export default class TarChunker { protected buffer: Uint8Array; protected bufferIndex: number; protected bufferIsEmpty: boolean; chunk(): TransformStream; }