From cbad6a52a0a5ab3623508cda5f6c53107e7bb9f8 Mon Sep 17 00:00:00 2001 From: Josue Date: Mon, 31 May 2021 18:47:00 -0400 Subject: [PATCH] refactor: rename filesystems datatype --- striker-ui/types/AnvilFileSystems.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; };