Interface UnpackArchiveFile
interface UnpackArchiveFile {
directory: string;
fullPath: string;
modTime: Instant;
name: string;
size: number;
type: "file";
arrayBuffer(): Promise<ArrayBuffer>;
blob(): Promise<Blob>;
bytes(): Promise<Uint8Array<ArrayBufferLike>>;
stream(): ReadableStream<Uint8Array<ArrayBufferLike>>;
text(): Promise<string>;
}
directory: string;
fullPath: string;
modTime: Instant;
name: string;
size: number;
type: "file";
arrayBuffer(): Promise<ArrayBuffer>;
blob(): Promise<Blob>;
bytes(): Promise<Uint8Array<ArrayBufferLike>>;
stream(): ReadableStream<Uint8Array<ArrayBufferLike>>;
text(): Promise<string>;
}
Hierarchy
- UnpackArchiveEntry
- UnpackArchiveFile
Properties
Readonlydirectory
directory: string
Readonlyfull Path
fullPath: string
Readonlymod Time
modTime: Instant
Readonlyname
name: string
Readonlysize
size: number
type
type: "file"