parent
6abdfcc9a7
commit
5f2ca07549
3 changed files with 12 additions and 10 deletions
@ -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<AnvilListItemNode>; |
||||
}; |
||||
|
||||
declare type AnvilList = { |
||||
anvils: Array<AnvilListItem>; |
||||
}; |
||||
|
@ -1,6 +0,0 @@ |
||||
declare type AnvilListItem = { |
||||
anvil_name: string; |
||||
anvil_uuid: string; |
||||
anvil_state: string; |
||||
nodes: Array<AnvilListItemNode>; |
||||
}; |
@ -1,4 +0,0 @@ |
||||
declare type AnvilListItemNode = { |
||||
node_name: string; |
||||
node_uuid: string; |
||||
}; |
Loading…
Reference in new issue