Create AxSkill.d.ts

This commit is contained in:
Justin Edmund 2022-03-03 03:07:44 -08:00
parent 66ebab74ab
commit 6d0227c6b7

11
types/AxSkill.d.ts vendored Normal file
View file

@ -0,0 +1,11 @@
interface AxSkill {
name: {
en: string,
jp: string
},
id: number,
minValue: number,
maxValue: number,
suffix?: string,
secondary?: AxSkill[]
}