pcb demo code.
[ealt-edge.git] / example-apps / PDD / frontend-src / src / app / datainterface.ts
diff --git a/example-apps/PDD/frontend-src/src/app/datainterface.ts b/example-apps/PDD/frontend-src/src/app/datainterface.ts
new file mode 100644 (file)
index 0000000..8182710
--- /dev/null
@@ -0,0 +1,25 @@
+export interface nodeDetails {
+    eliotNodes: nodinfo[];
+}
+
+export interface nodinfo {
+  nodeName: string;
+  nodeStatus: string;
+  nodeRole: string;
+  age: string;
+  version: string;
+  internalIp: string;
+  externalIp: string;
+  osImage: string;
+  kernel: string;
+  containerRuntime: string;
+}
+
+export interface uploadImageData {
+  uploadFile: any;
+}
+
+export interface pcbdetectObject {
+  
+}
+