From 1179e4936c771dc9d48d2d0d1d7164f438b8c7c6 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 5 Jan 2023 02:09:22 -0800 Subject: [PATCH] Rename AxSkill to ItemSkill --- types/{AxSkill.d.ts => ItemSkill.d.ts} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename types/{AxSkill.d.ts => ItemSkill.d.ts} (76%) diff --git a/types/AxSkill.d.ts b/types/ItemSkill.d.ts similarity index 76% rename from types/AxSkill.d.ts rename to types/ItemSkill.d.ts index 3294cd47..afb5f105 100644 --- a/types/AxSkill.d.ts +++ b/types/ItemSkill.d.ts @@ -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[] }