Add JobSkill type

This commit is contained in:
Justin Edmund 2022-11-27 18:55:51 -08:00
parent c354c8840c
commit 5598e72463

16
types/JobSkill.d.ts vendored Normal file
View file

@ -0,0 +1,16 @@
interface JobSkill {
id: string
job: Job
name: {
[key: string]: string
en: string
ja: string
}
slug: string
group: number
main: boolean
base: boolean
sub: boolean
emp: boolean
order: number
}