Add JobSkill type
This commit is contained in:
parent
c354c8840c
commit
5598e72463
1 changed files with 16 additions and 0 deletions
16
types/JobSkill.d.ts
vendored
Normal file
16
types/JobSkill.d.ts
vendored
Normal 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
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue