mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 20:30:54 -05:00
Also due to a bug the subs were not accessible at all before.
This was a bug introduced in c014ba5e18
25 lines
576 B
TypeScript
25 lines
576 B
TypeScript
export {
|
|
possibleApValues,
|
|
validatedWeaponIdFromSearchParams,
|
|
validatedBuildFromSearchParams,
|
|
serializeBuild,
|
|
hpDivided,
|
|
validatedAnyWeaponFromSearchParams,
|
|
} from "./core/utils";
|
|
export type {
|
|
DamageType,
|
|
AbilityPoints,
|
|
AnalyzedBuild,
|
|
SpecialWeaponParams,
|
|
SubWeaponParams,
|
|
AnyWeapon,
|
|
} from "./analyzer-types";
|
|
export {
|
|
buildStats,
|
|
specialDeviceHp,
|
|
specialFieldHp,
|
|
subStats,
|
|
} from "./core/stats";
|
|
export { DAMAGE_TYPE, damageTypeToWeaponType } from "./analyzer-constants";
|
|
export { default as weaponParams } from "./core/weapon-params.json";
|