Rename AxSkill to ItemSkill

This commit is contained in:
Justin Edmund 2023-01-05 02:09:22 -08:00
parent 61c7341ee3
commit 1179e4936c

View file

@ -1,4 +1,4 @@
interface AxSkill {
interface ItemSkill {
name: {
[key: string]: string
en: string
@ -9,5 +9,5 @@ interface AxSkill {
minValue: number
maxValue: number
suffix?: string
secondary?: AxSkill[]
secondary?: ItemSkill[]
}