This commit is contained in:
Sebastian Seedorf
2022-08-10 11:04:29 +02:00
parent 6d3aae7fe9
commit 270ec5e7ab
3 changed files with 45 additions and 46 deletions

View File

@@ -13,3 +13,11 @@ export interface UnfetchedEntity {
export interface Entity extends UnfetchedEntity {
recipe?: Recipe
}
export interface Group {
name: string
isExported?: boolean
factories: string[]
intermediates: string[]
inputs: string[]
}