DCS World Typescript
    Preparing search index...

    Warehouse inventory object containing the current inventory of a warehouse.

    Liquids are indexed by number, use LiquidType enum to access.

    {
    * "liquids": {
    * 1: 100000,
    * 2: 100000,
    * 3: 100000,
    * 0: 100000
    * },
    * "weapon": {
    * "weapons.nurs.SNEB_TYPE253_F1B": 100,
    * "weapons.bombs.BDU_45LGB": 100,
    * "weapons.containers.KINGAL": 100,
    * ...
    * },
    * "aircraft": {
    * "F-16C bl.50": 100,
    * "L-39ZA": 100,
    * "B-17G": 100,
    * "MiG-19P": 100,
    * "I-16": 100,
    * "Su-17M4": 100,
    * "F/A-18A": 100,
    * ...
    * }
    * }
    type WarehouseInventory = {
        aircraft: Record<string, number>;
        liquids: Record<LiquidType, number>;
        weapon: Record<string, number>;
    }
    Index

    Properties

    aircraft: Record<string, number>
    liquids: Record<LiquidType, number>
    weapon: Record<string, number>