app-package-builder
Version:
Idea is very simple — in the runtime we don't need to process or understand archive format. Wwe just need to know file data ranges. Where file data begins and where ends.
16 lines (15 loc) • 409 B
TypeScript
import { SubFileDescriptor } from "./blockMap";
export declare class SevenZArchiveEntry implements SubFileDescriptor {
hasStream: boolean;
isDirectory: boolean;
isAntiItem: boolean;
hasCrc: boolean;
crcValue: number;
size: number;
name: string;
hasWindowsAttributes: boolean;
windowsAttributes: number;
blockIndex: number;
dataStart: number;
dataEnd: number;
}