diff --git a/striker-ui/types/AnvilSharedStorage.d.ts b/striker-ui/types/AnvilSharedStorage.d.ts new file mode 100644 index 00000000..4ce52860 --- /dev/null +++ b/striker-ui/types/AnvilSharedStorage.d.ts @@ -0,0 +1,3 @@ +declare type AnvilSharedStorage = { + file_systems: Array; +}; diff --git a/striker-ui/types/AnvilSharedStorageFileSystem.d.ts b/striker-ui/types/AnvilSharedStorageFileSystem.d.ts new file mode 100644 index 00000000..835a5ba9 --- /dev/null +++ b/striker-ui/types/AnvilSharedStorageFileSystem.d.ts @@ -0,0 +1,4 @@ +declare type AnvilSharedStorageFileSystem = { + mountPoint: string; + nodes: Array; +}; diff --git a/striker-ui/types/AnvilSharedStorageNode.d.ts b/striker-ui/types/AnvilSharedStorageNode.d.ts new file mode 100644 index 00000000..971f0692 --- /dev/null +++ b/striker-ui/types/AnvilSharedStorageNode.d.ts @@ -0,0 +1,9 @@ +declare type AnvilSharedStorageNode = { + is_mounted: boolean; + total: number; + free: number; + nodeInfo?: { + node_name: string; + node_uuid: string; + }; +};