Class UnpackArchiveDirectory
Hierarchy
- UnpackArchiveEntry
- UnpackArchiveDirectory
Constructors
constructor
- new UnpackArchiveDirectory(
entry: (
| {
directory: string;
fullPath: string;
modTime: Instant;
name: string;
size: number;
type: "folder";
}
| {
directory: string;
fullPath: string;
modTime: Instant;
name: string;
size: number;
type: "file";
}
) & { type: "folder" },
): UnpackArchiveDirectoryParameters
- entry: (
| {
directory: string;
fullPath: string;
modTime: Instant;
name: string;
size: number;
type: "folder";
}
| {
directory: string;
fullPath: string;
modTime: Instant;
name: string;
size: number;
type: "file";
}
) & { type: "folder" }
Returns UnpackArchiveDirectory
- entry: (