brawlhalla-api-ts
Version:
TypeScript wrapper for the Brawlhalla API.
10 lines (9 loc) • 333 B
TypeScript
import { TLegendName } from '../types';
import { Weapon } from './weapon';
export declare class Legend {
readonly id: number;
readonly name: TLegendName;
readonly firstWeapon: Weapon;
readonly secondWeapon: Weapon;
constructor(id: number, name: TLegendName, firstWeapon: Weapon, secondWeapon: Weapon);
}