diff --git a/striker-ui/types/AnvilList.d.ts b/striker-ui/types/AnvilList.d.ts index b308285d..d0d3b760 100644 --- a/striker-ui/types/AnvilList.d.ts +++ b/striker-ui/types/AnvilList.d.ts @@ -1,3 +1,15 @@ +declare type AnvilListItemNode = { + node_name: string; + node_uuid: string; +}; + +declare type AnvilListItem = { + anvil_name: string; + anvil_uuid: string; + anvil_state: string; + nodes: Array; +}; + declare type AnvilList = { anvils: Array; }; diff --git a/striker-ui/types/AnvilListItem.d.ts b/striker-ui/types/AnvilListItem.d.ts deleted file mode 100644 index 1270f1b2..00000000 --- a/striker-ui/types/AnvilListItem.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -declare type AnvilListItem = { - anvil_name: string; - anvil_uuid: string; - anvil_state: string; - nodes: Array; -}; diff --git a/striker-ui/types/AnvilListItemNode.d.ts b/striker-ui/types/AnvilListItemNode.d.ts deleted file mode 100644 index b396cd1f..00000000 --- a/striker-ui/types/AnvilListItemNode.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -declare type AnvilListItemNode = { - node_name: string; - node_uuid: string; -};