From eb2003a05952b109ed157aa811aa5f022f14a350 Mon Sep 17 00:00:00 2001 From: Khwaja Date: Wed, 11 Jun 2025 11:53:59 -0500 Subject: [PATCH] Re-adding the CircularData.ts file --- RELOG | 1 + .../components/CaseBuilder/CircularData.ts | 23 +++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 160000 RELOG diff --git a/RELOG b/RELOG new file mode 160000 index 0000000..5ea3e10 --- /dev/null +++ b/RELOG @@ -0,0 +1 @@ +Subproject commit 5ea3e10139afdf0fc6e721a000dc5bc29a975ac4 diff --git a/web/src/components/CaseBuilder/CircularData.ts b/web/src/components/CaseBuilder/CircularData.ts index e69de29..ad569d7 100644 --- a/web/src/components/CaseBuilder/CircularData.ts +++ b/web/src/components/CaseBuilder/CircularData.ts @@ -0,0 +1,23 @@ +export interface CircularPlant { + id: string; + x: number; + y: number; + + input?: string; // optional product name + +} + +export interface CircularProduct { + id: string; + x: number; + y: number; +} + +export interface CircularData { + plants: Record; + + products: Record; + + parameters: Record; // Any parameters, ex: simulation years, costs + +} \ No newline at end of file