Matteo Scandolo | 40f8fa9 | 2016-12-07 09:21:35 -0800 | [diff] [blame^] | 1 | export interface IInstance { |
2 | id: number; | ||||
3 | name: string; | ||||
4 | backend_status: string; | ||||
5 | created: string; | ||||
6 | } | ||||
7 | |||||
8 | /** | ||||
9 | * @whatItDoes Describes the slice model. | ||||
10 | * @stable | ||||
11 | */ | ||||
12 | export interface ISlice { | ||||
13 | id: number; | ||||
14 | name: string; | ||||
15 | backend_status: string; | ||||
16 | created: string; | ||||
17 | } | ||||
18 |