refactor: rename filesystems datatype

main
Josue 4 years ago committed by Tsu-ba-me
parent 227685983f
commit cbad6a52a0
  1. 10
      striker-ui/types/AnvilFileSystems.d.ts

@ -1,4 +1,4 @@
declare type AnvilSharedStorageHost = { declare type AnvilFileSystemHost = {
host_uuid: string; host_uuid: string;
host_name: string; host_name: string;
is_mounted: boolean; is_mounted: boolean;
@ -6,11 +6,11 @@ declare type AnvilSharedStorageHost = {
free: number; free: number;
}; };
declare type AnvilSharedStorageFileSystem = { declare type AnvilFileSystem = {
mount_point: string; mount_point: string;
hosts: Array<AnvilSharedStorageHost>; hosts: Array<AnvilFileSystemHost>;
}; };
declare type AnvilSharedStorage = { declare type AnvilFileSystems = {
file_systems: Array<AnvilSharedStorageFileSystem>; file_systems: Array<AnvilFileSystem>;
}; };

Loading…
Cancel
Save