Fixed error due to missing declarations

This commit is contained in:
Pax1601
2023-05-01 11:12:21 +02:00
parent d32923ffe8
commit 7427c7059c
3 changed files with 153 additions and 204 deletions

View File

@@ -1,6 +1,7 @@
interface LoadoutItemBlueprint {
name: string;
quantity: number;
effectiveAgainst?: string;
}
interface LoadoutBlueprint {
@@ -13,6 +14,7 @@ interface LoadoutBlueprint {
interface UnitBlueprint {
name: string;
era?: string[];
label: string;
shortLabel: string;
loadouts: LoadoutBlueprint[];