Hoist planet fetch to root and add totals calculation

This commit is contained in:
Calli
2024-04-28 09:45:29 +03:00
parent cfa0a86b99
commit 4066125333
8 changed files with 313 additions and 218 deletions

View File

@@ -10,6 +10,7 @@ export interface AccessToken {
needsLogin: boolean;
comment: string;
system: string;
planets: PlanetWithInfo[];
}
export interface Character {
@@ -25,6 +26,7 @@ export interface CharacterPlanets {
name: string;
characterId: number;
account?: string;
system?: string;
planets: PlanetWithInfo[];
}