parent
5f2ca07549
commit
1642b637ee
3 changed files with 12 additions and 10 deletions
@ -1,3 +1,15 @@ |
|||||||
|
declare type AnvilSharedStorageNode = { |
||||||
|
is_mounted: boolean; |
||||||
|
total: number; |
||||||
|
free: number; |
||||||
|
nodeInfo?: AnvilListItemNode; |
||||||
|
}; |
||||||
|
|
||||||
|
declare type AnvilSharedStorageFileSystem = { |
||||||
|
mountPoint: string; |
||||||
|
nodes: Array<AnvilSharedStorageNode>; |
||||||
|
}; |
||||||
|
|
||||||
declare type AnvilSharedStorage = { |
declare type AnvilSharedStorage = { |
||||||
file_systems: Array<AnvilSharedStorageFileSystem>; |
file_systems: Array<AnvilSharedStorageFileSystem>; |
||||||
}; |
}; |
||||||
|
@ -1,4 +0,0 @@ |
|||||||
declare type AnvilSharedStorageFileSystem = { |
|
||||||
mountPoint: string; |
|
||||||
nodes: Array<AnvilSharedStorageNode>; |
|
||||||
}; |
|
@ -1,6 +0,0 @@ |
|||||||
declare type AnvilSharedStorageNode = { |
|
||||||
is_mounted: boolean; |
|
||||||
total: number; |
|
||||||
free: number; |
|
||||||
nodeInfo?: AnvilListItemNode; |
|
||||||
}; |
|
Loading…
Reference in new issue