Simplify raw disks definition
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-05-30 11:15:21 +02:00
parent a3ac56f849
commit 794d16bdaa
4 changed files with 19 additions and 34 deletions

View File

@ -29,11 +29,9 @@ export interface BaseFileVMDisk {
deleteType?: "keepfile" | "deletefile";
}
export type DiskAllocType = "Sparse" | "Fixed";
interface RawVMDisk {
format: "Raw";
alloc_type: DiskAllocType;
is_sparse: boolean;
}
interface QCow2Disk {