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[];

View File

@ -1827,59 +1827,6 @@ export class AircraftDatabase extends UnitDatabase {
],
"filename": "mosquito.png"
},
"MosquitoFBMkVI": {
"name": "MosquitoFBMkVI",
"label": "Mosquito FB MkVI",
"era": ["WW2", "Early Cold War"],
"shortLabel": "Mosquito",
"loadouts": [
{
"fuel": 1,
"items": [
{
"name": "20mm Hispano Gun",
"quantity": 4
},
{
"name": "7.7mm MG",
"quantity": 4
},
{
"name": "500 lb GP Mk.V",
"quantity": 2
},
{
"name": "500 lb GP Short tail",
"quantity": 2
}
],
"roles": [
"Strike"
],
"code": "500 lb GP Mk.V*2, 500 lb GP Short tail*2",
"name": "Medium / Bombs / Medium Range"
},
{
"fuel": 1,
"items": [
{
"name": "20mm Hispano Gun",
"quantity": 4
},
{
"name": "7.7mm MG",
"quantity": 4
}
],
"roles": [
"CAP"
],
"code": "",
"name": "Light / Guns / Medium Range"
}
],
"filename": "mosquito.png"
},
"P-47D-40": {
"name": "P-47D-40",
"label": "P-47D Thunderbolt",
@ -1961,7 +1908,7 @@ export class AircraftDatabase extends UnitDatabase {
}
],
"filename": "p-51.png"
}
},
"A-50": {
"name": "A-50",
"label": "A-50 Mainstay",

File diff suppressed because it is too large Load Diff