UNPKG

borderlands2

Version:

Borderlands 2 weapon damage and DPS calculation library

10 lines (9 loc) 342 B
import { StatType } from "../value_object/stat_type"; import { Weapon } from "../../weapon/interface/weapon"; import { Context } from "../../context"; export declare class StatService { protected weapon: Weapon; protected context: Context; constructor(weapon: Weapon, context: Context); getStat(statType: StatType): number; }