mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-06 14:23:30 -04:00
11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
export interface Volume {
|
|
name: string;
|
|
mount_point: string;
|
|
total_capacity: bigint;
|
|
available_capacity: bigint;
|
|
is_removable: boolean;
|
|
disk_type: string | null;
|
|
file_system: string | null;
|
|
is_root_filesystem: boolean;
|
|
}
|