export interface Weapon { /** A localized name for the object, suitable for display to users. The text is title cased. */ name: string; /** A localized description, suitable for display to users. */ description: string; /** The type of the vehicle. Options are: - Grenade - Turret - Vehicle - Standard - Power */ type: string; /** A reference to a large image for icon use. This may be null if there is no image defined. */ largeIconImageUrl: string; /** A reference to a small image for icon use. This may be null if there is no image defined. */ smallIconImageUrl: string; /** Indicates whether the weapon is usable by a player. */ isUsableByPlayer: boolean; /** The ID that uniquely identifies the weapon. */ id: number; } /** A listing of weapons supported in the title. There is no significance to the ordering. */ export declare type Weapons = Weapon[];