Apply prettier changes

This commit is contained in:
Sainan 2024-06-07 14:43:41 +00:00 committed by github-actions[bot]
parent 6406f6d763
commit 34e4aac212

View File

@ -18,7 +18,15 @@ export const warframes: MinWarframe[] = Array.from(new Items({ category: ["Warfr
return next;
});
export type WeaponTypeInternal = "LongGuns" | "Pistols" | "Melee" | "SpaceMelee" | "SpaceGuns" | "SentinelWeapons" | "OperatorAmps" | "SpecialItems";
export type WeaponTypeInternal =
| "LongGuns"
| "Pistols"
| "Melee"
| "SpaceMelee"
| "SpaceGuns"
| "SentinelWeapons"
| "OperatorAmps"
| "SpecialItems";
export const items: MinItem[] = Array.from(new Items({ category: ["All"] }) as MinimalItem[]).map(item => {
const next = { ...item };