anvil/striker-ui/types/AnvilFileSystems.d.ts

17 lines
313 B
TypeScript
Raw Normal View History

2021-05-31 22:47:00 +00:00
declare type AnvilFileSystemHost = {
host_uuid: string;
host_name: string;
is_mounted: boolean;
total: number;
free: number;
};
2021-05-31 22:47:00 +00:00
declare type AnvilFileSystem = {
mount_point: string;
2021-05-31 22:47:00 +00:00
hosts: Array<AnvilFileSystemHost>;
};
2021-05-31 22:47:00 +00:00
declare type AnvilFileSystems = {
file_systems: Array<AnvilFileSystem>;
};