EG version upgrade to 1.3
[ealt-edge.git] / example-apps / PDD / frontend-src / src / app / datainterface.ts
1 export interface nodeDetails {
2     eliotNodes: nodinfo[];
3 }
4
5 export interface nodinfo {
6   nodeName: string;
7   nodeStatus: string;
8   nodeRole: string;
9   age: string;
10   version: string;
11   internalIp: string;
12   externalIp: string;
13   osImage: string;
14   kernel: string;
15   containerRuntime: string;
16 }
17
18 export interface uploadImageData {
19   uploadFile: any;
20 }
21
22 export interface pcbdetectObject {
23   
24 }
25