add latest

This commit is contained in:
2022-09-23 04:04:18 +01:00
parent 6e4e70a360
commit 7c9d93d80d
23 changed files with 175 additions and 137 deletions

9
src/components/models.ts Normal file
View File

@@ -0,0 +1,9 @@
export interface TieredProductionChain {
tierName: string;
productionChains: ProductionChain[];
}
export interface ProductionChain {
productionChain: string;
mermaidDefinition: string;
}