Skip to content

Commit

Permalink
fix: Types
Browse files Browse the repository at this point in the history
  • Loading branch information
veryard committed Nov 4, 2024
1 parent f2318a3 commit 1fa1aae
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions packages/client-api/src/providers/disk/disk-provider-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,20 @@ export interface Disk {
name: string;
fileSystem: string;
mountPoint: string;
totalSpace: number;
availableSpace: number;
totalSpace: DiskSizeMeasure;
availableSpace: DiskSizeMeasure;
isRemovable: boolean;
diskType: string;
}

export interface DiskOutput {
disks: Disk[];
}

export interface DiskSizeMeasure {
bytes: number;
siValue: number;
siUnit: string;
iecValue: number;
iecUnit: string;
}

0 comments on commit 1fa1aae

Please sign in to comment.