diff --git a/striker-ui/types/AnvilFileSystems.d.ts b/striker-ui/types/AnvilFileSystems.d.ts index c11fd39b..0f999ff2 100644 --- a/striker-ui/types/AnvilFileSystems.d.ts +++ b/striker-ui/types/AnvilFileSystems.d.ts @@ -1,4 +1,4 @@ -declare type AnvilSharedStorageHost = { +declare type AnvilFileSystemHost = { host_uuid: string; host_name: string; is_mounted: boolean; @@ -6,11 +6,11 @@ declare type AnvilSharedStorageHost = { free: number; }; -declare type AnvilSharedStorageFileSystem = { +declare type AnvilFileSystem = { mount_point: string; - hosts: Array; + hosts: Array; }; -declare type AnvilSharedStorage = { - file_systems: Array; +declare type AnvilFileSystems = { + file_systems: Array; };