refactor main view to table and add production, import and export information per planet

This commit is contained in:
Calli
2023-07-16 19:02:11 +03:00
parent bc0c2f83a2
commit 4c392533da
11 changed files with 1906 additions and 15 deletions

View File

@@ -15,6 +15,17 @@ export interface Character {
characterId: number;
}
export interface PlanetWithInfo extends Planet {
info: PlanetInfo;
infoUniverse: PlanetInfoUniverse;
}
export interface CharacterPlanets {
name: string;
characterId: number;
account?: string;
planets: PlanetWithInfo[];
}
export interface CharacterUpdate {
account?: string;
}