Can decompress XZ files

This commit is contained in:
2025-06-09 17:04:35 +02:00
parent 759361d9f6
commit d7796e1459
2 changed files with 30 additions and 4 deletions

View File

@ -5,7 +5,9 @@ export type DiskImageFormat =
| { format: "Raw"; is_sparse: boolean }
| { format: "QCow2"; virtual_size?: number }
| { format: "GzCompressedQCow2" }
| { format: "GzCompressedRaw" };
| { format: "GzCompressedRaw" }
| { format: "XzCompressedQCow2" }
| { format: "XzCompressedRaw" };
export type DiskImage = {
file_size: number;