This commit is contained in:
Renan LE CARO 2025-04-08 10:36:30 +02:00
parent e1c20627bc
commit 6ef13f2d19
15 changed files with 289 additions and 65 deletions

5
src/types.d.ts vendored
View file

@ -1,5 +1,5 @@
import { rawUpgrades } from "./upgrades";
import { options } from "./options";
import {rawUpgrades} from "./upgrades";
import {options} from "./options";
export type colorString = string;
@ -296,3 +296,4 @@ export type OptionDef = {
help: string;
};
export type OptionId = keyof typeof options;
export type UpgradeLike = { id: PerkId; name: string; requires: string };