Interface TarStreamEntryExperimental
interface TarStreamEntry {
header: OldStyleFormat | PosixUstarFormat;
path: string;
readable?: ReadableStream<Uint8Array>;
}
header: OldStyleFormat | PosixUstarFormat;
path: string;
readable?: ReadableStream<Uint8Array>;
}
Properties
Experimentalheader
The header information attributed to the entry, presented in one of two valid forms.
Experimentalpath
path: string
The path of the entry as stated in the archive.
Optional Experimentalreadable
readable?: ReadableStream<Uint8Array>
The content of the entry, if the entry is a file.
The structure of an entry extracted from a Tar archive.
UNSTABLE: New API, yet to be vetted.