add planet extraction simulation to tooltip

This commit is contained in:
calli
2025-04-22 17:47:06 +03:00
parent efc28f7e36
commit a738dc4a22
5 changed files with 247 additions and 18 deletions

View File

@@ -1,5 +1,3 @@
import { PlanetConfig } from "./app/components/PlanetConfig/PlanetConfigDialog";
export interface AccessToken {
access_token: string;
expires_at: number;
@@ -119,3 +117,9 @@ export interface Pin {
amount: number;
}>;
}
export interface PlanetConfig {
characterId: number;
planetId: number;
excludeFromTotals: boolean;
}