|
1 | | -import { Attribute } from './attributes'; |
2 | | -import ITEM_ARMOR_WEIGHTS, { ItemArmorWeight } from './itemArmorWeights'; |
| 1 | +import { type Attribute } from './attributes'; |
| 2 | +import ITEM_ARMOR_WEIGHTS, { type ItemArmorWeight } from './itemArmorWeights'; |
3 | 3 | import ITEM_CATEGORIES from './itemCategories'; |
4 | | -import ITEM_CATEGORY_NAMES, { ItemCategoryName } from './itemCategoryNames'; |
| 4 | +import ITEM_CATEGORY_NAMES, { |
| 5 | + type ItemCategoryName, |
| 6 | +} from './itemCategoryNames'; |
5 | 7 | import ITEM_MODIFIERS, { |
6 | | - ItemModifier, |
7 | | - ItemModifierAttribute, |
8 | | - ItemModifiers, |
| 8 | + type ItemModifier, |
| 9 | + type ItemModifierAttribute, |
| 10 | + type ItemModifiers, |
9 | 11 | } from './itemModifiers'; |
10 | | -import ITEM_RARITIES, { ItemRarity } from './itemRarities'; |
11 | | -import ITEM_STAT_NAMES, { ItemStatName } from './itemStatNames'; |
12 | | -import ITEM_STATS, { ItemStat } from './itemStats'; |
13 | | -import ITEM_TYPE_NAMES, { ItemTypeName } from './itemTypeNames'; |
14 | | -import GW2ApiInfixUpgrade from '../gw2api/types/items/details/common/infixUpgrade'; |
| 12 | +import ITEM_RARITIES, { type ItemRarity } from './itemRarities'; |
| 13 | +import ITEM_STAT_NAMES, { type ItemStatName } from './itemStatNames'; |
| 14 | +import ITEM_STATS, { type ItemStat } from './itemStats'; |
| 15 | +import ITEM_TYPE_NAMES, { type ItemTypeName } from './itemTypeNames'; |
| 16 | +import type GW2ApiInfixUpgrade from '../gw2api/types/items/details/common/infixUpgrade'; |
15 | 17 |
|
16 | 18 | export interface GetModifiersProps { |
17 | 19 | rarity: ItemRarity; |
|
0 commit comments