mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-20 22:21:27 -05:00
Also due to a bug the subs were not accessible at all before.
This was a bug introduced in c014ba5e18
8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
import type { DamageType } from "~/features/build-analyzer";
|
|
|
|
export const damageTypeTranslationString = ({
|
|
damageType,
|
|
}: {
|
|
damageType: DamageType;
|
|
}) => `analyzer:damage.${damageType}` as const;
|